HomeSort by relevance Sort by last modified time
    Searched refs:AMessage (Results 26 - 50 of 220) sorted by null

12 3 4 5 6 7 8 9

  /frameworks/av/include/media/stagefright/foundation/
AMessage.h 40 friend struct AMessage;
43 sp<AMessage> mReply;
50 bool retrieveReply(sp<AMessage> *reply) {
58 status_t setReply(const sp<AMessage> &reply);
61 struct AMessage : public RefBase {
62 AMessage();
63 AMessage(uint32_t what, const sp<const AHandler> &handler);
65 static sp<AMessage> FromParcel(const Parcel &parcel);
85 void setMessage(const char *name, const sp<AMessage> &obj);
102 bool findMessage(const char *name, sp<AMessage> *obj) const
    [all...]
ABuffer.h 29 struct AMessage;
36 void setFarewellMessage(const sp<AMessage> msg);
52 sp<AMessage> meta();
61 sp<AMessage> mFarewell;
62 sp<AMessage> mMeta;
AHierarchicalStateMachine.h 36 virtual bool onMessageReceived(const sp<AMessage> &msg) = 0;
52 virtual void handleMessage(const sp<AMessage> &msg);
  /frameworks/av/media/libstagefright/wifi-display/
MediaSender.h 32 struct AMessage;
51 const sp<AMessage> &notify);
58 ssize_t addTrack(const sp<AMessage> &format, uint32_t flags);
74 virtual void onMessageReceived(const sp<AMessage> &msg);
89 sp<AMessage> mFormat;
98 sp<AMessage> mNotify;
115 void onSenderNotify(const sp<AMessage> &msg);
  /frameworks/av/media/libstagefright/wifi-display/source/
Converter.h 46 Converter(const sp<AMessage> &notify,
48 const sp<AMessage> &outputFormat,
57 sp<AMessage> getOutputFormat() const;
82 virtual void onMessageReceived(const sp<AMessage> &msg);
95 sp<AMessage> mNotify;
97 sp<AMessage> mOutputFormat;
105 sp<AMessage> mEncoderActivityNotify;
  /frameworks/av/include/media/stagefright/
MediaCodec.h 31 struct AMessage;
77 const sp<AMessage> &format,
82 status_t setCallback(const sp<AMessage> &callback);
84 status_t setOnFrameRenderedNotification(const sp<AMessage> &notify);
142 status_t getOutputFormat(sp<AMessage> *format) const;
143 status_t getInputFormat(sp<AMessage> *format) const;
151 status_t getOutputFormat(size_t index, sp<AMessage> *format);
161 void requestActivityNotification(const sp<AMessage> &notify);
165 status_t setParameters(const sp<AMessage> &params);
171 std::list<FrameRenderTracker::Info> done, sp<AMessage> &msg)
    [all...]
CodecBase.h 49 virtual void setNotificationMessage(const sp<AMessage> &msg) = 0;
51 virtual void initiateAllocateComponent(const sp<AMessage> &msg) = 0;
52 virtual void initiateConfigureComponent(const sp<AMessage> &msg) = 0;
60 virtual void onMessageReceived(const sp<AMessage> &msg) = 0;
68 virtual void signalSetParameters(const sp<AMessage> &msg) = 0;
  /frameworks/av/media/libstagefright/rtsp/
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/av/media/libmediaplayerservice/nuplayer/
NuPlayerCCDecoder.h 31 CCDecoder(const sp<AMessage> &notify);
34 sp<AMessage> getTrackInfo(size_t index) const;
42 sp<AMessage> mNotify;
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/media/libstagefright/filters/
GraphicBufferListener.h 24 struct AMessage;
31 const sp<AMessage> &notify,
53 sp<AMessage> mNotify;
ZeroFilter.cpp 22 #include <media/stagefright/foundation/AMessage.h>
28 status_t ZeroFilter::setParameters(const sp<AMessage> &msg) {
29 sp<AMessage> params;
IntrinsicBlurFilter.h 29 virtual status_t configure(const sp<AMessage> &msg);
32 virtual status_t setParameters(const sp<AMessage> &msg);
RSFilter.h 33 virtual status_t configure(const sp<AMessage> &msg);
36 virtual status_t setParameters(const sp<AMessage> &msg);
SaturationFilter.h 31 virtual status_t configure(const sp<AMessage> &msg);
34 virtual status_t setParameters(const sp<AMessage> &msg);
SimpleFilter.cpp 18 #include <media/stagefright/foundation/AMessage.h>
24 status_t SimpleFilter::configure(const sp<AMessage> &msg) {
  /frameworks/av/media/libstagefright/httplive/
PlaylistFetcher.h 57 const sp<AMessage> &notify,
80 void resumeUntilAsync(const sp<AMessage> &params);
90 virtual void onMessageReceived(const sp<AMessage> &msg);
116 sp<AMessage> mNotify;
117 sp<AMessage> mStartTimeUsNotify;
135 sp<AMessage> mStopParams; // message containing the latest timestamps we should fetch.
216 status_t onStart(const sp<AMessage> &msg);
218 void onStop(const sp<AMessage> &msg);
223 sp<AMessage> &itemMeta,
228 status_t onResumeUntil(const sp<AMessage> &msg)
    [all...]
  /frameworks/av/media/libstagefright/include/
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);
SoftwareRenderer.h 30 struct AMessage;
41 void *platformPrivate, const sp<AMessage> &format);
62 void resetFormatIfChanged(const sp<AMessage> &format);
  /frameworks/av/include/media/
IMediaCodecList.h 24 #include <media/stagefright/foundation/AMessage.h>
38 virtual const sp<AMessage> getGlobalSettings() const = 0;
  /frameworks/wilhelm/src/android/
android_GenericPlayer.h 22 #include <media/stagefright/foundation/AMessage.h>
131 virtual void onMessageReceived(const sp<AMessage> &msg);
135 virtual void onNotify(const sp<AMessage> &msg);
138 virtual void onSeek(const sp<AMessage> &msg);
139 virtual void onLoop(const sp<AMessage> &msg);
142 virtual void onBufferingUpdate(const sp<AMessage> &msg);
143 virtual void onSetBufferingUpdateThreshold(const sp<AMessage> &msg);
144 virtual void onAttachAuxEffect(const sp<AMessage> &msg);
145 virtual void onSetAuxEffectSendLevel(const sp<AMessage> &msg);
146 void onSetPlayEvents(const sp<AMessage> &msg)
    [all...]

Completed in 202 milliseconds

12 3 4 5 6 7 8 9