OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:mediasource
(Results
1 - 25
of
117
) sorted by null
1
2
3
4
5
/frameworks/av/media/libstagefright/
MediaSource.cpp
17
#include <media/stagefright/
MediaSource
.h>
21
MediaSource
::
MediaSource
() {}
23
MediaSource
::~
MediaSource
() {}
/frameworks/av/media/libstagefright/wifi-display/source/
RepeaterSource.h
7
#include <media/stagefright/
MediaSource
.h>
13
// This
MediaSource
delivers frames at a constant rate by repeating buffers
15
struct RepeaterSource : public
MediaSource
{
16
RepeaterSource(const sp<
MediaSource
> &source, double rateHz);
47
sp<
MediaSource
> mSource;
MediaPuller.h
25
struct
MediaSource
;
33
MediaPuller(const sp<
MediaSource
> &source, const sp<AMessage> ¬ify);
54
sp<
MediaSource
> mSource;
/frameworks/av/cmds/stagefright/
SineSource.h
5
#include <media/stagefright/
MediaSource
.h>
12
struct SineSource : public
MediaSource
{
record.cpp
44
class DummySource : public
MediaSource
{
80
MediaBuffer **buffer, const
MediaSource
::ReadOptions *options) {
119
sp<
MediaSource
> createSource(const char *filename) {
120
sp<
MediaSource
> source;
190
sp<
MediaSource
> source = createSource(argv[1]);
199
sp<
MediaSource
> decoder = SimpleDecodingSource::Create(source);
208
sp<
MediaSource
> decoder = new DummySource(width, height, colorFormat);
224
sp<
MediaSource
> encoder =
300
sp<
MediaSource
> audioSource = new SineSource(kSampleRate, kNumChannels);
/external/webrtc/talk/app/webrtc/objc/
RTCMediaSource.mm
41
return [RTCEnumConverter convertSourceStateToObjC:self.
mediaSource
->state()];
49
(rtc::scoped_refptr<webrtc::MediaSourceInterface>)
mediaSource
{
50
if (!
mediaSource
) {
56
_mediaSource =
mediaSource
;
61
- (rtc::scoped_refptr<webrtc::MediaSourceInterface>)
mediaSource
{
RTCMediaSource+Internal.h
35
rtc::scoped_refptr<webrtc::MediaSourceInterface>
mediaSource
;
38
(rtc::scoped_refptr<webrtc::MediaSourceInterface>)
mediaSource
;
/frameworks/av/include/media/stagefright/
NuMediaExtractor.h
21
#include <media/stagefright/
MediaSource
.h>
38
struct
MediaSource
;
73
MediaSource
::ReadOptions::SeekMode mode =
74
MediaSource
::ReadOptions::SEEK_CLOSEST_SYNC);
119
MediaSource
::ReadOptions::SeekMode mode =
120
MediaSource
::ReadOptions::SEEK_CLOSEST_SYNC);
MediaSource.h
33
struct
MediaSource
: public BnMediaSource {
34
MediaSource
();
56
//
MediaSource
has changed mid-stream, the client can continue reading
79
virtual ~
MediaSource
();
82
MediaSource
(const
MediaSource
&);
83
MediaSource
&operator=(const
MediaSource
&);
MediaCodecSource.h
23
#include <media/stagefright/
MediaSource
.h>
36
struct MediaCodecSource : public
MediaSource
,
46
const sp<
MediaSource
> &source,
54
//
MediaSource
88
const sp<
MediaSource
> &source,
MediaAdapter.h
21
#include <media/stagefright/
MediaSource
.h>
30
struct MediaAdapter : public
MediaSource
, public MediaBufferObserver {
36
// Inherited functions from
MediaSource
JPEGSource.h
21
#include <media/stagefright/
MediaSource
.h>
28
struct JPEGSource : public
MediaSource
{
SimpleDecodingSource.h
22
#include <media/stagefright/
MediaSource
.h>
37
class SimpleDecodingSource : public
MediaSource
{
39
// Creates a
MediaSource
that uses MediaCodec to decode a compressed input |source|.
/frameworks/av/media/libstagefright/tests/
DummyRecorder.h
27
struct
MediaSource
;
33
sp<
MediaSource
> mSource;
46
DummyRecorder(const sp<
MediaSource
> &source) : mSource(source)
/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,
DataManager.java
29
import com.android.gallery3d.data.
MediaSource
.PathId;
108
private HashMap<String,
MediaSource
> mSourceMap =
109
new LinkedHashMap<String,
MediaSource
>();
130
for (
MediaSource
source : mSourceMap.values()) {
150
void addSource(
MediaSource
source) {
171
MediaSource
source = mSourceMap.get(path.getPrefix());
238
MediaSource
source = mSourceMap.get(prefix);
270
for (
MediaSource
source : mSourceMap.values()) {
278
MediaSource
source = mSourceMap.get(item.getPrefix());
285
for (
MediaSource
source : mSourceMap.values())
[
all
...]
/frameworks/av/media/libstagefright/rtsp/
ARTPSession.h
28
struct
MediaSource
;
36
sp<
MediaSource
> trackAt(size_t index);
VideoSource.h
23
#include <media/stagefright/
MediaSource
.h>
28
class VideoSource : public
MediaSource
{
58
MediaBuffer **buffer, const
MediaSource
::ReadOptions *options) {
/frameworks/av/media/libstagefright/include/
AVIExtractor.h
23
#include <media/stagefright/
MediaSource
.h>
33
virtual sp<
MediaSource
> getTrack(size_t index);
106
int64_t timeUs,
MediaSource
::ReadOptions::SeekMode mode,
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
MediaSource.java
46
public class
MediaSource
extends Filter {
125
// Currently, given a device orientation, the
MediaSource
rotates in such a way
128
// where the
MediaSource
rotates the source to align with the camera feed and pass it
135
// to the frame so that
MediaSource
itself need not know about any rotation.
162
private static final String TAG = "
MediaSource
";
164
public
MediaSource
(String name) {
185
if (mLogVerbose) Log.v(TAG, "Preparing
MediaSource
");
198
Log.v(TAG, "Opening
MediaSource
");
361
if (mLogVerbose) Log.v(TAG, "
MediaSource
closed");
529
synchronized(
MediaSource
.this)
[
all
...]
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
MediaSource.java
32
public class
MediaSource
{
40
public
MediaSource
(long nativeSource) {
/frameworks/base/media/jni/
android_media_MediaExtractor.h
21
#include <media/stagefright/
MediaSource
.h>
55
status_t seekTo(int64_t timeUs,
MediaSource
::ReadOptions::SeekMode mode);
/frameworks/wilhelm/src/android/include/
AacAdtsExtractor.h
29
#include <media/stagefright/
MediaSource
.h>
39
class AacAdtsSource : public
MediaSource
{
/frameworks/av/media/libmediaplayerservice/
StagefrightRecorder.h
36
struct
MediaSource
;
155
// Generic
MediaSource
set-up. Returns the appropriate
158
status_t setupMediaSource(sp<
MediaSource
> *
mediaSource
);
161
status_t setupVideoEncoder(sp<
MediaSource
> cameraSource, sp<MediaCodecSource> *source);
/frameworks/av/media/libstagefright/mpeg2ts/
ATSParser.h
25
#include <media/stagefright/
MediaSource
.h>
69
void init(off64_t offset, const sp<
MediaSource
> &source,
75
const sp<
MediaSource
> &getMediaSource() const { return mMediaSource; }
87
sp<
MediaSource
> mMediaSource;
116
sp<
MediaSource
> getSource(SourceType type);
Completed in 529 milliseconds
1
2
3
4
5