HomeSort by relevance Sort by last modified time
    Searched refs:AMessage (Results 1 - 25 of 135) sorted by null

1 2 3 4 5 6

  /frameworks/av/media/libstagefright/rtsp/
AAMRAssembler.h 29 struct AMessage;
34 const sp<AMessage> &notify, bool isWide,
47 sp<AMessage> mNotifyMsg;
AH263Assembler.h 29 struct AMessage;
32 AH263Assembler(const sp<AMessage> &notify);
42 sp<AMessage> mNotifyMsg;
ARawAudioAssembler.h 25 struct AMessage;
31 const sp<AMessage> &notify,
49 sp<AMessage> mNotifyMsg;
ARTSPConnection.h 38 void connect(const char *url, const sp<AMessage> &reply);
39 void disconnect(const sp<AMessage> &reply);
41 void sendRequest(const char *request, const sp<AMessage> &reply);
43 void observeBinaryData(const sp<AMessage> &reply);
51 virtual void onMessageReceived(const sp<AMessage> &msg);
88 KeyedVector<int32_t, sp<AMessage> > mPendingRequests;
90 sp<AMessage> mObserveBinaryMessage;
96 void onConnect(const sp<AMessage> &msg);
97 void onDisconnect(const sp<AMessage> &msg);
98 void onCompleteConnection(const sp<AMessage> &msg)
    [all...]
ARTPConnection.h 40 const sp<AMessage> &notify,
55 virtual void onMessageReceived(const sp<AMessage> &msg);
75 void onAddStream(const sp<AMessage> &msg);
76 void onRemoveStream(const sp<AMessage> &msg);
78 void onInjectPacket(const sp<AMessage> &msg);
AAVCAssembler.h 29 struct AMessage;
32 AAVCAssembler(const sp<AMessage> &notify);
42 sp<AMessage> mNotifyMsg;
AMPEG4AudioAssembler.h 29 struct AMessage;
34 const sp<AMessage> &notify, const AString &params);
44 sp<AMessage> mNotifyMsg;
AMPEG4ElementaryAssembler.h 33 struct AMessage;
37 const sp<AMessage> &notify, const AString &desc,
48 sp<AMessage> mNotifyMsg;
  /frameworks/base/media/jni/
android_media_Utils.h 36 struct AMessage;
38 JNIEnv *env, const sp<AMessage> &msg, jobject *map);
42 sp<AMessage> *msg);
  /frameworks/av/media/libstagefright/include/
M3UParser.h 22 #include <media/stagefright/foundation/AMessage.h>
37 sp<AMessage> meta();
40 bool itemAt(size_t index, AString *uri, sp<AMessage> *meta = NULL);
48 sp<AMessage> mMeta;
58 sp<AMessage> mMeta;
64 const AString &line, sp<AMessage> *meta, const char *key);
67 const AString &line, sp<AMessage> *meta, const char *key);
70 const AString &line, sp<AMessage> *meta);
73 const AString &line, sp<AMessage> *meta, const AString &baseURI);
AACExtractor.h 27 struct AMessage;
32 AACExtractor(const sp<DataSource> &source, const sp<AMessage> &meta);
57 sp<AMessage> *);
MP3Extractor.h 26 struct AMessage;
34 MP3Extractor(const sp<DataSource> &source, const sp<AMessage> &meta);
57 sp<AMessage> *meta);
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDecoder.h 30 Decoder(const sp<AMessage> &notify,
42 virtual void onMessageReceived(const sp<AMessage> &msg);
49 sp<AMessage> mNotify;
58 sp<AMessage> makeFormat(const sp<MetaData> &meta);
60 void onFillThisBuffer(const sp<AMessage> &msg);
NuPlayerRenderer.h 29 const sp<AMessage> &notify);
34 const sp<AMessage> &notifyConsumed);
56 virtual void onMessageReceived(const sp<AMessage> &msg);
72 sp<AMessage> mNotifyConsumed;
80 sp<AMessage> mNotify;
112 void onQueueBuffer(const sp<AMessage> &msg);
113 void onQueueEOS(const sp<AMessage> &msg);
114 void onFlush(const sp<AMessage> &msg);
125 bool dropBufferWhileFlushing(bool audio, const sp<AMessage> &msg);
NuPlayerDecoder.cpp 27 #include <media/stagefright/foundation/AMessage.h>
36 const sp<AMessage> &notify,
51 sp<AMessage> notifyMsg =
52 new AMessage(kWhatCodecNotify, id());
54 sp<AMessage> format = makeFormat(meta);
80 void NuPlayer::Decoder::onMessageReceived(const sp<AMessage> &msg) {
90 sp<AMessage> notify = mNotify->dup();
103 sp<AMessage> NuPlayer::Decoder::makeFormat(const sp<MetaData> &meta) {
106 sp<AMessage> msg;
122 void NuPlayer::Decoder::onFillThisBuffer(const sp<AMessage> &msg)
    [all...]
NuPlayerStreamListener.h 37 Command cmd, bool synchronous, const sp<AMessage> &extra);
40 ssize_t read(void *data, size_t size, sp<AMessage> *extra);
56 sp<AMessage> mExtra;
  /frameworks/av/include/media/stagefright/foundation/
ALooperRoster.h 34 status_t postMessage(const sp<AMessage> &msg, int64_t delayUs = 0);
35 void deliverMessage(const sp<AMessage> &msg);
38 const sp<AMessage> &msg, sp<AMessage> *response);
40 void postReply(uint32_t replyID, const sp<AMessage> &reply);
56 KeyedVector<uint32_t, sp<AMessage> > mReplies;
58 status_t postMessage_l(const sp<AMessage> &msg, int64_t delayUs);
AHandler.h 26 struct AMessage;
40 virtual void onMessageReceived(const sp<AMessage> &msg) = 0;
ABuffer.h 29 struct AMessage;
35 void setFarewellMessage(const sp<AMessage> msg);
48 sp<AMessage> meta();
54 sp<AMessage> mFarewell;
55 sp<AMessage> mMeta;
AHierarchicalStateMachine.h 36 virtual bool onMessageReceived(const sp<AMessage> &msg) = 0;
52 virtual void onMessageReceived(const sp<AMessage> &msg);
  /frameworks/av/media/libstagefright/
MediaCodec.cpp 29 #include <media/stagefright/foundation/AMessage.h>
79 const sp<AMessage> &msg, sp<AMessage> *response) {
119 mCodec->setNotificationMessage(new AMessage(kWhatCodecNotify, id()));
121 sp<AMessage> msg = new AMessage(kWhatInit, id());
129 sp<AMessage> response;
134 const sp<AMessage> &format,
138 sp<AMessage> msg = new AMessage(kWhatConfigure, id())
    [all...]
  /frameworks/av/media/libstagefright/foundation/
AMessage.cpp 17 #include "AMessage.h"
33 AMessage::AMessage(uint32_t what, ALooper::handler_id target)
39 AMessage::~AMessage() {
43 void AMessage::setWhat(uint32_t what) {
47 uint32_t AMessage::what() const {
51 void AMessage::setTarget(ALooper::handler_id handlerID) {
55 ALooper::handler_id AMessage::target() const {
59 void AMessage::clear()
    [all...]
ABuffer.cpp 21 #include "AMessage.h"
64 void ABuffer::setFarewellMessage(const sp<AMessage> msg) {
68 sp<AMessage> ABuffer::meta() {
70 mMeta = new AMessage;
  /frameworks/av/include/media/stagefright/
MediaCodec.h 30 struct AMessage;
54 const sp<AMessage> &format,
104 status_t getOutputFormat(sp<AMessage> *format) const;
111 virtual void onMessageReceived(const sp<AMessage> &msg);
164 sp<AMessage> mNotify;
176 sp<AMessage> mOutputFormat;
194 const sp<AMessage> &msg, sp<AMessage> *response);
201 size_t updateBuffers(int32_t portIndex, const sp<AMessage> &msg);
202 status_t onQueueInputBuffer(const sp<AMessage> &msg)
    [all...]
  /frameworks/wilhelm/src/android/
android_GenericPlayer.h 22 #include <media/stagefright/foundation/AMessage.h>
130 virtual void onMessageReceived(const sp<AMessage> &msg);
134 virtual void onNotify(const sp<AMessage> &msg);
137 virtual void onSeek(const sp<AMessage> &msg);
138 virtual void onLoop(const sp<AMessage> &msg);
141 virtual void onBufferingUpdate(const sp<AMessage> &msg);
142 virtual void onSetBufferingUpdateThreshold(const sp<AMessage> &msg);
143 virtual void onAttachAuxEffect(const sp<AMessage> &msg);
144 virtual void onSetAuxEffectSendLevel(const sp<AMessage> &msg);
145 void onSetPlayEvents(const sp<AMessage> &msg)
    [all...]

Completed in 521 milliseconds

1 2 3 4 5 6