/frameworks/base/media/jni/ |
android_media_MediaExtractor.h | 21 #include <media/stagefright/MediaSource.h> 53 status_t seekTo(int64_t timeUs, MediaSource::ReadOptions::SeekMode mode);
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
MediaSource.java | 25 public abstract class MediaSource { 26 private static final String TAG = "MediaSource"; 29 protected MediaSource(String prefix) { 70 // Maps a list of Paths (all belong to this MediaSource) to MediaItems,
|
ComboSource.java | 21 class ComboSource extends MediaSource {
|
SecureSource.java | 21 public class SecureSource extends MediaSource {
|
/frameworks/av/cmds/stagefright/ |
record.cpp | 42 class DummySource : public MediaSource { 78 MediaBuffer **buffer, const MediaSource::ReadOptions *options) { 117 sp<MediaSource> createSource(const char *filename) { 118 sp<MediaSource> source; 191 sp<MediaSource> source = createSource(argv[1]); 200 sp<MediaSource> decoder = OMXCodec::Create( 210 sp<MediaSource> decoder = new DummySource(width, height, colorFormat); 226 sp<MediaSource> encoder = 307 sp<MediaSource> audioSource = new SineSource(kSampleRate, kNumChannels); 328 sp<MediaSource> encoder [all...] |
/frameworks/av/media/libstagefright/include/ |
AwesomePlayer.h | 38 struct MediaSource; 167 sp<MediaSource> mVideoTrack; 168 sp<MediaSource> mVideoSource; 176 sp<MediaSource> mAudioTrack; 177 sp<MediaSource> mOmxSource; 178 sp<MediaSource> mAudioSource; 264 void setAudioSource(sp<MediaSource> source); 268 void setVideoSource(sp<MediaSource> source); 271 void addTextSource_l(size_t trackIndex, const sp<MediaSource>& source); 352 status_t selectAudioTrack_l(const sp<MediaSource>& source, size_t trackIndex) [all...] |
AVIExtractor.h | 23 #include <media/stagefright/MediaSource.h> 33 virtual sp<MediaSource> getTrack(size_t index); 105 int64_t timeUs, MediaSource::ReadOptions::SeekMode mode,
|
AACExtractor.h | 35 virtual sp<MediaSource> getTrack(size_t index);
|
AMRExtractor.h | 35 virtual sp<MediaSource> getTrack(size_t index);
|
DRMExtractor.h | 37 virtual sp<MediaSource> getTrack(size_t index);
|
FLACExtractor.h | 35 virtual sp<MediaSource> getTrack(size_t index);
|
MP3Extractor.h | 37 virtual sp<MediaSource> getTrack(size_t index);
|
MPEG2TSExtractor.h | 39 virtual sp<MediaSource> getTrack(size_t index);
|
OggExtractor.h | 37 virtual sp<MediaSource> getTrack(size_t index);
|
WAVExtractor.h | 36 virtual sp<MediaSource> getTrack(size_t index);
|
/frameworks/av/media/libstagefright/ |
DRMExtractor.cpp | 24 #include <media/stagefright/MediaSource.h> 36 class DRMSource : public MediaSource { 38 DRMSource(const sp<MediaSource> &mediaSource, 53 sp<MediaSource> mOriginalMediaSource; 67 DRMSource::DRMSource(const sp<MediaSource> &mediaSource, 71 : mOriginalMediaSource(mediaSource), 249 sp<MediaSource> DRMExtractor::getTrack(size_t index) { 250 sp<MediaSource> originalMediaSource = mOriginalExtractor->getTrack(index) [all...] |
/frameworks/av/media/libstagefright/timedtext/ |
TimedTextPlayer.cpp | 125 MediaSource::ReadOptions options; 128 static_cast<MediaSource::ReadOptions::SeekMode>(seekMode)); 220 MediaSource::ReadOptions options; 221 options.setSeekTo(seekTimeUs, MediaSource::ReadOptions::SEEK_PREVIOUS_SYNC); 225 void TimedTextPlayer::doRead(MediaSource::ReadOptions* options) { 236 MediaSource::ReadOptions::SeekMode seekMode = 237 MediaSource::ReadOptions::SEEK_PREVIOUS_SYNC;
|
TimedText3GPPSource.cpp | 26 #include <media/stagefright/MediaSource.h> 34 TimedText3GPPSource::TimedText3GPPSource(const sp<MediaSource>& mediaSource) 35 : mSource(mediaSource) { 43 const MediaSource::ReadOptions *options) {
|
/frameworks/av/libvideoeditor/vss/stagefrightshells/inc/ |
VideoEditorUtils.h | 34 #include <media/stagefright/MediaSource.h>
|
/frameworks/av/include/media/stagefright/ |
SurfaceMediaSource.h | 25 #include <media/stagefright/MediaSource.h> 57 class SurfaceMediaSource : public MediaSource, 76 // For the MediaSource interface for use by StageFrightRecorder: 91 // end of MediaSource interface 199 ////////////////////////// For MediaSource
|
/frameworks/av/media/libstagefright/mpeg2ts/ |
ATSParser.h | 33 struct MediaSource; 78 sp<MediaSource> getSource(SourceType type);
|
/frameworks/av/media/libstagefright/rtsp/ |
ARTPWriter.h | 40 virtual status_t addSource(const sp<MediaSource> &source); 75 sp<MediaSource> mSource;
|
/frameworks/wilhelm/src/android/ |
android_AudioSfDecoder.h | 21 #include <media/stagefright/MediaSource.h> 103 sp<MediaSource> mAudioSource;// the decoder reading from the data source
|
/frameworks/av/libvideoeditor/lvpp/ |
PreviewPlayer.h | 139 sp<MediaSource> mVideoTrack; 140 sp<MediaSource> mVideoSource; 143 sp<MediaSource> mAudioTrack; 144 sp<MediaSource> mAudioSource; 261 void setVideoSource(const sp<MediaSource>& source); 263 void setAudioSource(const sp<MediaSource>& source);
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/ |
MediaSource.java | 54 public class MediaSource extends Filter { 133 // Currently, given a device orientation, the MediaSource rotates in such a way 136 // where the MediaSource rotates the source to align with the camera feed and pass it 143 // to the frame so that MediaSource itself need not know about any rotation. 170 private static final String TAG = "MediaSource"; 172 public MediaSource(String name) { 193 if (mLogVerbose) Log.v(TAG, "Preparing MediaSource"); 206 Log.v(TAG, "Opening MediaSource"); 369 if (mLogVerbose) Log.v(TAG, "MediaSource closed"); 537 synchronized(MediaSource.this) [all...] |