HomeSort by relevance Sort by last modified time
    Searched full:abuffer (Results 51 - 75 of 166) sorted by null

1 23 4 5 6 7

  /frameworks/av/media/libstagefright/include/
NuMediaExtractor.h 36 struct ABuffer;
83 status_t readSampleData(const sp<ABuffer> &buffer);
133 status_t appendVorbisNumPageSamples(TrackInfo *info, const sp<ABuffer> &buffer);
HevcUtils.h 24 #include <media/stagefright/foundation/ABuffer.h>
102 Vector<sp<ABuffer>> mNalUnits;
MPEG2TSWriter.h 28 struct ABuffer;
80 void writeAccessUnit(int32_t sourceIndex, const sp<ABuffer> &buffer);
  /frameworks/av/media/libstagefright/rtsp/
ARTSPConnection.h 26 struct ABuffer;
32 sp<ABuffer> mContent;
109 sp<ABuffer> receiveBinaryData();
ARawAudioAssembler.cpp 26 #include <media/stagefright/foundation/ABuffer.h>
55 List<sp<ABuffer> > *queue = source->queue();
62 List<sp<ABuffer> >::iterator it = queue->begin();
76 sp<ABuffer> buffer = *queue->begin();
AAMRAssembler.cpp 25 #include <media/stagefright/foundation/ABuffer.h>
103 List<sp<ABuffer> > *queue = source->queue();
110 List<sp<ABuffer> >::iterator it = queue->begin();
124 sp<ABuffer> buffer = *queue->begin();
186 sp<ABuffer> accessUnit = new ABuffer(totalSize);
AMPEG4AudioAssembler.cpp 26 #include <media/stagefright/foundation/ABuffer.h>
63 static sp<ABuffer> decodeHex(const AString &s) {
69 sp<ABuffer> buffer = new ABuffer(outLen);
145 static status_t parseAudioSpecificConfig(ABitReader *bits, sp<ABuffer> *asc) {
239 *asc = new ABuffer(numBytes);
362 sp<ABuffer> AMPEG4AudioAssembler::removeLATMFraming(const sp<ABuffer> &buffer) {
365 sp<ABuffer> out = new ABuffer(buffer->size())
    [all...]
AMPEG4ElementaryAssembler.cpp 27 #include <media/stagefright/foundation/ABuffer.h>
208 List<sp<ABuffer> > *queue = source->queue();
215 List<sp<ABuffer> >::iterator it = queue->begin();
229 sp<ABuffer> buffer = *queue->begin();
353 sp<ABuffer> accessUnit = new ABuffer(header.mSize);
379 sp<ABuffer> accessUnit;
SDPLoader.cpp 28 #include <media/stagefright/foundation/ABuffer.h>
119 sp<ABuffer> buffer = new ABuffer(sdpSize);
ARTPSource.cpp 32 #include <media/stagefright/foundation/ABuffer.h>
88 void ARTPSource::processRTPPacket(const sp<ABuffer> &buffer) {
105 bool ARTPSource::queuePacket(const sp<ABuffer> &buffer) {
154 List<sp<ABuffer> >::iterator it = mQueue.begin();
173 void ARTPSource::addFIR(const sp<ABuffer> &buffer) {
223 void ARTPSource::addReceiverReport(const sp<ABuffer> &buffer) {
  /frameworks/av/media/ndk/
NdkMediaMuxer.cpp 28 #include <media/stagefright/foundation/ABuffer.h>
101 sp<ABuffer> buf = new ABuffer((void*)(data + info->offset), info->size);
  /frameworks/av/drm/mediacas/plugins/clearkey/
ecm_generator.h 24 #include <media/stagefright/foundation/ABuffer.h>
81 status_t DecodeECM(const sp<ABuffer>& ecm, Asset* asset,
82 sp<ABuffer> *content_key, DefaultEcmFields* default_fields);
105 status_t DecodeECMClearFields(const sp<ABuffer>& ecm, Asset* asset,
ClearKeySessionLibrary.h 28 struct ABuffer;
54 sp<ABuffer> mEcmBuffer;
ecm.h 104 #include <media/stagefright/foundation/ABuffer.h>
137 status_t Parse(const sp<ABuffer>& buffer_as_binary);
152 status_t Decrypt(const sp<ABuffer>& buffer_as_binary,
158 const sp<ABuffer> buffer() const { return buffer_; }
159 inline void set_buffer(const sp<ABuffer>& buffer) {
160 buffer_ = ABuffer::CreateAsCopy(buffer->data(), buffer->size());
165 inline void set_content_key(const sp<ABuffer>& value) {
166 content_key_ = ABuffer::CreateAsCopy(value->data(), value->size());
168 inline const sp<ABuffer> content_key() const { return content_key_; }
189 sp<ABuffer> buffer_
    [all...]
  /frameworks/av/media/libstagefright/foundation/
Android.bp 7 "ABuffer.cpp",
base64.cpp 19 #include "ABuffer.h"
24 sp<ABuffer> decodeBase64(const AString &s) {
47 sp<ABuffer> buffer = new ABuffer(outLen);
  /frameworks/av/cmds/stagefright/
SimplePlayer.h 23 struct ABuffer;
76 Vector<sp<ABuffer> > mCSD;
  /frameworks/av/media/libstagefright/httplive/
HTTPDownloader.cpp 26 #include <media/stagefright/foundation/ABuffer.h>
81 const char *url, sp<ABuffer> *out,
136 sp<ABuffer> buffer = *out != NULL ? *out : new ABuffer(size);
159 sp<ABuffer> copy = new ABuffer(buffer->size() + bufferRemaining);
215 const char *url, sp<ABuffer> *out, String8 *actualUrl) {
230 sp<ABuffer> buffer;
  /frameworks/av/media/libstagefright/wifi-display/source/
Converter.cpp 30 #include <media/stagefright/foundation/ABuffer.h>
280 bool Converter::IsSilence(const sp<ABuffer> &accessUnit) {
305 sp<ABuffer> accessUnit;
322 sp<ABuffer> accessUnit;
501 sp<ABuffer> buffer = *mInputBufferQueue.begin();
551 sp<ABuffer> partialAudioAU =
552 new ABuffer(
612 sp<ABuffer> buffer = *mInputBufferQueue.begin();
652 sp<ABuffer> Converter::prependCSD(const sp<ABuffer> &accessUnit) const
    [all...]
PlaybackSession.cpp 34 #include <media/stagefright/foundation/ABuffer.h>
81 void queueAccessUnit(const sp<ABuffer> &accessUnit);
82 sp<ABuffer> dequeueAccessUnit();
85 void queueOutputBuffer(const sp<ABuffer> &accessUnit);
86 sp<ABuffer> dequeueOutputBuffer();
116 List<sp<ABuffer> > mQueuedAccessUnits;
118 List<sp<ABuffer> > mQueuedOutputBuffers;
262 const sp<ABuffer> &accessUnit) {
266 sp<ABuffer> WifiDisplaySource::PlaybackSession::Track::dequeueAccessUnit() {
271 sp<ABuffer> accessUnit = *mQueuedAccessUnits.begin()
    [all...]
  /frameworks/av/media/libstagefright/
MPEG2TSWriter.cpp 22 #include <media/stagefright/foundation/ABuffer.h>
54 sp<ABuffer> lastAccessUnit();
56 void setLastAccessUnit(const sp<ABuffer> &accessUnit);
76 sp<ABuffer> mAACCodecSpecificData;
78 sp<ABuffer> mBuffer;
80 sp<ABuffer> mLastAccessUnit;
172 mAACCodecSpecificData = new ABuffer(codec_specific_data_size);
192 sp<ABuffer> out = new ABuffer(1024);
257 mBuffer = new ABuffer(buffer->range_length())
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerSource.h 31 struct ABuffer;
96 bool audio, sp<ABuffer> *accessUnit) = 0;
161 void notifyDrmInfo(const sp<ABuffer> &buffer);
NuPlayerDecoderPassThrough.cpp 29 #include <media/stagefright/foundation/ABuffer.h>
129 status_t NuPlayer::DecoderPassThrough::dequeueAccessUnit(sp<ABuffer> *accessUnit) {
156 sp<ABuffer> NuPlayer::DecoderPassThrough::aggregateBuffer(
157 const sp<ABuffer> &accessUnit) {
158 sp<ABuffer> aggregate;
173 mAggregateBuffer = new ABuffer(kAggregateBufferSizeBytes);
216 sp<ABuffer> accessUnit;
288 sp<ABuffer> buffer;
NuPlayer.h 28 struct ABuffer;
318 void sendSubtitleData(const sp<ABuffer> &buffer, int32_t baseIndex);
319 void sendTimedMetaData(const sp<ABuffer> &buffer);
320 void sendTimedTextData(const sp<ABuffer> &buffer);
NuPlayerCCDecoder.cpp 26 #include <media/stagefright/foundation/ABuffer.h>
57 static void dumpBytePair(const sp<ABuffer> &ccBuf) __attribute__ ((unused));
58 static void dumpBytePair(const sp<ABuffer> &ccBuf) {
123 mDTVCCPacket(new ABuffer(kMaxBandwithSizeBytes)) {
210 bool NuPlayer::CCDecoder::extractFromSEI(const sp<ABuffer> &accessUnit) {
211 sp<ABuffer> sei;
302 bool NuPlayer::CCDecoder::extractFromMPEGUserData(const sp<ABuffer> &accessUnit) {
303 sp<ABuffer> mpegUserData;
360 sp<ABuffer> line21CCBuf = NULL;
402 line21CCBuf = new ABuffer((cc_count - i) * sizeof(CCData))
    [all...]

Completed in 415 milliseconds

1 23 4 5 6 7