/frameworks/av/media/libstagefright/include/ |
PersistentSurface.h | 28 struct PersistentSurface : public RefBase { 29 PersistentSurface() {} 31 PersistentSurface( 63 DISALLOW_EVIL_CONSTRUCTORS(PersistentSurface);
|
MediaCodecSource.h | 24 #include <media/stagefright/PersistentSurface.h> 46 const sp<PersistentSurface> &persistentSurface = NULL, 97 const sp<PersistentSurface> &persistentSurface, 140 sp<PersistentSurface> mPersistentSurface;
|
CodecBase.h | 45 struct PersistentSurface; 205 const sp<PersistentSurface> &surface) = 0;
|
MediaFilter.h | 36 virtual void initiateSetInputSurface(const sp<PersistentSurface> &surface);
|
MediaCodec.h | 47 struct PersistentSurface; 85 static sp<PersistentSurface> CreatePersistentInputSurface(); 113 status_t setInputSurface(const sp<PersistentSurface> &surface);
|
ACodec.h | 71 virtual void initiateSetInputSurface(const sp<PersistentSurface> &surface);
|
/frameworks/av/media/libmedia/include/media/ |
IMediaRecorder.h | 32 struct PersistentSurface; 65 virtual status_t setInputSurface(const sp<PersistentSurface>& surface) = 0;
|
MediaRecorderBase.h | 29 struct PersistentSurface; 63 virtual status_t setInputSurface(const sp<PersistentSurface>& surface) = 0;
|
mediarecorder.h | 34 struct PersistentSurface; 250 status_t setInputSurface(const sp<PersistentSurface>& surface);
|
/frameworks/base/media/jni/ |
android_media_MediaCodec.h | 37 struct PersistentSurface; 69 status_t setInputSurface(const sp<PersistentSurface> &surface);
|
android_media_MediaRecorder.cpp | 32 #include <media/stagefright/PersistentSurface.h> 53 extern sp<PersistentSurface> 122 static sp<PersistentSurface> get_persistentSurface(JNIEnv* env, jobject object) 624 sp<PersistentSurface> persistentSurface = get_persistentSurface(env, object); 626 process_media_recorder_call(env, mr->setInputSurface(persistentSurface),
|
android_media_MediaCodec.cpp | 47 #include <media/stagefright/PersistentSurface.h> 308 const sp<PersistentSurface> &surface) { 1051 sp<PersistentSurface> android_media_MediaCodec_getPersistentInputSurface( 1053 sp<PersistentSurface> persistentSurface; 1058 persistentSurface = reinterpret_cast<PersistentSurface *>( 1065 return persistentSurface; 1071 sp<PersistentSurface> persistentSurface [all...] |
/frameworks/av/media/libmediaplayerservice/ |
MediaRecorderClient.h | 92 virtual status_t setInputSurface(const sp<PersistentSurface>& surface);
|
StagefrightRecorder.h | 57 virtual status_t setInputSurface(const sp<PersistentSurface>& surface); 81 sp<PersistentSurface> mPersistentSurface;
|
MediaRecorderClient.cpp | 55 status_t MediaRecorderClient::setInputSurface(const sp<PersistentSurface>& surface)
|
StagefrightRecorder.cpp | 49 #include <media/stagefright/PersistentSurface.h> 349 const sp<PersistentSurface>& surface) { [all...] |
/frameworks/av/media/libmedia/ |
IMediaRecorder.cpp | 32 #include <media/stagefright/PersistentSurface.h> 86 status_t setInputSurface(const sp<PersistentSurface>& surface) 527 sp<PersistentSurface> surface = new PersistentSurface();
|
mediarecorder.cpp | 30 #include <media/stagefright/PersistentSurface.h> 386 status_t MediaRecorder::setInputSurface(const sp<PersistentSurface>& surface)
|
/frameworks/av/media/ndk/ |
NdkMediaCodec.cpp | 34 #include <media/stagefright/PersistentSurface.h> 60 sp<PersistentSurface> mPersistentSurface; 63 const sp<PersistentSurface>& ps) 419 sp<PersistentSurface> ps = MediaCodec::CreatePersistentInputSurface();
|
/frameworks/base/media/java/android/media/ |
MediaCodec.java | [all...] |
MediaRecorder.java | 164 if (!(surface instanceof MediaCodec.PersistentSurface)) { 165 throw new IllegalArgumentException("not a PersistentSurface"); [all...] |
/frameworks/av/media/libstagefright/ |
MediaCodecSource.cpp | 327 const sp<PersistentSurface> &persistentSurface, 330 looper, format, source, persistentSurface, flags); 418 const sp<PersistentSurface> &persistentSurface, 431 mPersistentSurface(persistentSurface), 530 // consumer, but have to use PersistentSurface as a wrapper to [all...] |
MediaCodec.cpp | 53 #include <media/stagefright/PersistentSurface.h> 447 sp<PersistentSurface> MediaCodec::CreatePersistentInputSurface() { 466 return new PersistentSurface(bufferProducer, bufferSource); 827 const sp<PersistentSurface> &surface) { [all...] |
ACodec.cpp | 44 #include <media/stagefright/PersistentSurface.h> 639 const sp<PersistentSurface> &surface) { [all...] |
/frameworks/av/media/libstagefright/filters/ |
MediaFilter.cpp | 88 const sp<PersistentSurface> & /* surface */) {
|