/frameworks/av/media/libstagefright/include/media/stagefright/ |
D | MediaSource.h | 34 struct MediaSource : public virtual RefBase { struct 35 MediaSource(); 93 virtual ~MediaSource(); argument 96 MediaSource(const MediaSource &); 97 MediaSource &operator=(const MediaSource &); argument
|
D | NuMediaExtractor.h | 41 struct MediaSource; 78 MediaSource::ReadOptions::SeekMode mode = 79 MediaSource::ReadOptions::SEEK_CLOSEST_SYNC); 84 MediaSource::ReadOptions::SeekMode mode = 85 MediaSource::ReadOptions::SEEK_CLOSEST_SYNC); 155 MediaSource::ReadOptions::SeekMode mode = 156 MediaSource::ReadOptions::SEEK_CLOSEST_SYNC); 160 MediaSource::ReadOptions::SeekMode mode = 161 MediaSource::ReadOptions::SEEK_CLOSEST_SYNC);
|
D | SimpleDecodingSource.h | 37 class SimpleDecodingSource : public MediaSource { 48 const sp<MediaSource> &source, uint32_t flags, 54 const sp<MediaSource> &source, uint32_t flags = 0); 76 const sp<MediaCodec> &codec, const sp<MediaSource> &source, const sp<ALooper> &looper, 80 sp<MediaSource> mSource;
|
D | AACWriter.h | 26 struct MediaSource; 33 virtual status_t addSource(const sp<MediaSource> &source); 50 sp<MediaSource> mSource;
|
D | InterfaceUtils.h | 30 struct MediaSource; 48 sp<MediaSource> CreateMediaSourceFromIMediaSource(const sp<IMediaSource> &source);
|
D | AMRWriter.h | 33 virtual status_t addSource(const sp<MediaSource> &source); 45 sp<MediaSource> mSource;
|
D | OggWriter.h | 35 virtual status_t addSource(const sp<MediaSource>& source); 48 sp<MediaSource> mSource;
|
D | MediaCodecSource.h | 34 struct MediaCodecSource : public MediaSource, 44 const sp<MediaSource> &source, 97 const sp<MediaSource> &source,
|
/frameworks/av/media/libstagefright/ |
D | MediaSource.cpp | 22 MediaSource::MediaSource() {} in MediaSource() function in android::MediaSource 24 MediaSource::~MediaSource() {} in ~MediaSource()
|
D | RemoteMediaSource.cpp | 57 MediaBufferBase **buffer, const MediaSource::ReadOptions *options) { in read() 58 return mTrack->read(buffer, reinterpret_cast<const MediaSource::ReadOptions*>(options)); in read()
|
/frameworks/av/media/libstagefright/tests/fuzzers/ |
D | FrameDecoderFuzzer.cpp | 35 static const MediaSource::ReadOptions::SeekMode kSeekModes[] = { 36 MediaSource::ReadOptions::SeekMode::SEEK_PREVIOUS_SYNC, 37 MediaSource::ReadOptions::SeekMode::SEEK_NEXT_SYNC, 38 MediaSource::ReadOptions::SeekMode::SEEK_CLOSEST_SYNC, 39 MediaSource::ReadOptions::SeekMode::SEEK_CLOSEST, 40 MediaSource::ReadOptions::SeekMode::SEEK_FRAME_INDEX,
|
D | IMediaSourceFuzzImpl.h | 33 status_t read(MediaBufferBase**, const MediaSource::ReadOptions*) override; 35 const MediaSource::ReadOptions*) override; 58 status_t IMediaSourceFuzzImpl::read(MediaBufferBase** buffer, const MediaSource::ReadOptions*) { in read() 67 const MediaSource::ReadOptions*) { in readMultiple()
|
/frameworks/av/cmds/stagefright/ |
D | record.cpp | 45 class DummySource : public MediaSource { 81 MediaBuffer **buffer, const MediaSource::ReadOptions *options) { 123 sp<MediaSource> createSource(const char *filename) { 124 sp<MediaSource> source; 192 sp<MediaSource> source = createSource(argv[1]); 201 sp<MediaSource> decoder = SimpleDecodingSource::Create(source); 210 sp<MediaSource> decoder = new DummySource(width, height, colorFormat); 226 sp<MediaSource> encoder = 277 sp<MediaSource> audioSource = new SineSource(kSampleRate, kNumChannels); in main() 291 sp<MediaSource> encoder = in main()
|
D | stagefright.cpp | 157 static void dumpSource(const sp<MediaSource> &source, const String8 &filename) { in dumpSource() 195 static void playSource(sp<MediaSource> &source) { in playSource() 201 sp<MediaSource> rawSource; in playSource() 255 MediaSource::ReadOptions options; in playSource() 331 MediaSource::ReadOptions options; in playSource() 431 struct DetectSyncSource : public MediaSource { 432 explicit DetectSyncSource(const sp<MediaSource> &source); 449 sp<MediaSource> mSource; 456 DetectSyncSource::DetectSyncSource(const sp<MediaSource> &source) in DetectSyncSource() 538 Vector<sp<MediaSource> > &sources, bool syncInfoPresent) { in writeSourcesToMP4() [all …]
|
D | recordvideo.cpp | 57 class DummySource : public MediaSource { 91 MediaBufferBase **buffer, const MediaSource::ReadOptions *options __unused) { in read() 270 sp<MediaSource> source = in main() 304 sp<MediaSource> encoder = in main()
|
D | audioloop.cpp | 109 sp<MediaSource> source; in main() 150 sp<MediaSource> encoder = MediaCodecSource::Create(looper, meta, source); in main() 166 sp<MediaSource> decoder = SimpleDecodingSource::Create(encoder); in main()
|
D | AudioPlayer.h | 53 void setSource(const sp<MediaSource> &source); 72 sp<MediaSource> mSource;
|
/frameworks/av/media/libmedia/include/media/ |
D | IMediaSource.h | 35 DECLARE_META_INTERFACE(MediaSource); 68 const MediaSource::ReadOptions *options = NULL) = 0; 84 const MediaSource::ReadOptions *options = nullptr) = 0; 114 const MediaSource::ReadOptions * /* options = nullptr */) { in readMultiple()
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/ |
D | MediaSource.java | 46 public class MediaSource extends Filter { class 164 public MediaSource(String name) { in MediaSource() method in MediaSource 529 synchronized(MediaSource.this) { 531 MediaSource.this.notify(); 540 synchronized(MediaSource.this) { 542 MediaSource.this.notify(); 551 synchronized(MediaSource.this) { 561 synchronized(MediaSource.this) { 564 MediaSource.this.notify();
|
/frameworks/av/media/libstagefright/include/ |
D | FrameDecoder.h | 62 MediaSource::ReadOptions *options, 93 MediaSource::ReadOptions mReadOptions; 116 MediaSource::ReadOptions *options, 141 MediaSource::ReadOptions::SeekMode mSeekMode; 160 MediaSource::ReadOptions *options,
|
/frameworks/av/media/libstagefright/rtsp/include/media/stagefright/rtsp/ |
D | ARTPSession.h | 28 struct MediaSource; 36 sp<MediaSource> trackAt(size_t index);
|
D | VideoSource.h | 28 class VideoSource : public MediaSource { 58 MediaBuffer **buffer, const MediaSource::ReadOptions *options) { in read()
|
/frameworks/av/media/libstagefright/httplive/fuzzer/ |
D | httplive_fuzzer.cpp | 64 constexpr MediaSource::ReadOptions::SeekMode kValidSeekMode[] = { 65 MediaSource::ReadOptions::SeekMode::SEEK_PREVIOUS_SYNC, 66 MediaSource::ReadOptions::SeekMode::SEEK_NEXT_SYNC, 67 MediaSource::ReadOptions::SeekMode::SEEK_CLOSEST_SYNC, 68 MediaSource::ReadOptions::SeekMode::SEEK_CLOSEST, 69 MediaSource::ReadOptions::SeekMode::SEEK_FRAME_INDEX}; 295 MediaSource::ReadOptions::SeekMode mode = in invokeSeekTo()
|
/frameworks/wilhelm/src/android/include/ |
D | AacAdtsExtractor.h | 38 class AacAdtsSource : public MediaSource { 77 virtual sp<MediaSource> getTrack(size_t index);
|
/frameworks/av/media/libstagefright/webm/include/webm/ |
D | WebmWriter.h | 50 virtual status_t addSource(const sp<MediaSource> &source); 96 sp<MediaSource> mSource;
|