HomeSort by relevance Sort by last modified time
    Searched full:amessage (Results 1 - 25 of 144) sorted by null

1 2 3 4 5 6

  /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);
ABuffer.h 29 struct AMessage;
35 void setFarewellMessage(const sp<AMessage> msg);
48 sp<AMessage> meta();
54 sp<AMessage> mFarewell;
55 sp<AMessage> mMeta;
AMessage.h 32 struct AMessage : public RefBase {
33 AMessage(uint32_t what = 0, ALooper::handler_id target = 0);
35 static sp<AMessage> FromParcel(const Parcel &parcel);
55 void setMessage(const char *name, const sp<AMessage> &obj);
70 bool findMessage(const char *name, sp<AMessage> *obj) const;
80 status_t postAndAwaitResponse(sp<AMessage> *response);
92 sp<AMessage> dup() const;
114 virtual ~AMessage();
153 DISALLOW_EVIL_CONSTRUCTORS(AMessage);
ALooper.h 32 struct AMessage;
64 sp<AMessage> mMessage;
78 void post(const sp<AMessage> &msg, int64_t delayUs);
  /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/libstagefright/rtsp/
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);
AAMRAssembler.h 29 struct AMessage;
34 const sp<AMessage> &notify, bool isWide,
47 sp<AMessage> mNotifyMsg;
AAVCAssembler.h 29 struct AMessage;
32 AAVCAssembler(const sp<AMessage> &notify);
42 sp<AMessage> mNotifyMsg;
AH263Assembler.h 29 struct AMessage;
32 AH263Assembler(const sp<AMessage> &notify);
42 sp<AMessage> mNotifyMsg;
  /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;
Android.mk 12 AMessage.cpp \
  /frameworks/av/media/libmediaplayerservice/nuplayer/
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.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);
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/
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...]
ACodec.h 49 void setNotificationMessage(const sp<AMessage> &msg);
50 void initiateSetup(const sp<AMessage> &msg);
55 void initiateAllocateComponent(const sp<AMessage> &msg);
56 void initiateConfigureComponent(const sp<AMessage> &msg);
130 sp<AMessage> mNotify;
156 List<sp<AMessage> > mDeferredQueue;
187 status_t configureCodec(const char *mime, const sp<AMessage> &msg);
200 const char *mime, const sp<AMessage> &msg);
226 status_t setupMPEG4EncoderParameters(const sp<AMessage> &msg);
227 status_t setupH263EncoderParameters(const sp<AMessage> &msg)
    [all...]
  /frameworks/av/cmds/stagefright/
SimplePlayer.cpp 28 #include <media/stagefright/foundation/AMessage.h>
47 const sp<AMessage> &msg, sp<AMessage> *response) {
61 sp<AMessage> msg = new AMessage(kWhatSetDataSource, id());
63 sp<AMessage> response;
68 sp<AMessage> msg = new AMessage(kWhatSetSurface, id());
78 sp<AMessage> response;
83 sp<AMessage> msg = new AMessage(kWhatPrepare, id())
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
Mailer.java 67 public void sendMessage(String aSubject, String aMessage) {
68 if (aSubject == null || aMessage == null || sendMail == false){
69 printEmailFailureNotice(aSubject,aMessage);
108 + aMessage);
120 public void sendTextMessage(String aSubject, String aMessage) {
121 if (aSubject == null || aMessage == null || sendMail == false){
122 printEmailFailureNotice(aSubject,aMessage);
153 message.setText(aMessage);
167 String aSubject, String aMessage, String[] attachments) {
168 if (aSubject == null || aMessage == null || sendMail == false)
    [all...]
  /frameworks/av/media/libstagefright/timedtext/
TimedTextPlayer.cpp 22 #include <media/stagefright/foundation/AMessage.h>
51 sp<AMessage> msg = new AMessage(kWhatSeek, id());
57 (new AMessage(kWhatPause, id()))->post();
61 sp<AMessage> msg = new AMessage(kWhatSeek, id());
67 sp<AMessage> msg = new AMessage(kWhatSetSource, id());
72 void TimedTextPlayer::onMessageReceived(const sp<AMessage> &msg) {
163 sp<AMessage> msg = new AMessage(kWhatRetryRead, id())
    [all...]

Completed in 2787 milliseconds

1 2 3 4 5 6