Searched refs:MediaMuxer (Results 1 - 8 of 8) sorted by relevance

/frameworks/av/include/media/stagefright/
H A DMediaMuxer.h35 // MediaMuxer is used to mux multiple tracks into a video. Currently, we only
41 struct MediaMuxer : public RefBase { struct in namespace:android
43 // Please update media/java/android/media/MediaMuxer.java if the
52 MediaMuxer(const char *path, OutputFormat format);
54 // Construct the muxer with the file descriptor. Note that the MediaMuxer
56 MediaMuxer(int fd, OutputFormat format);
58 virtual ~MediaMuxer();
134 DISALLOW_EVIL_CONSTRUCTORS(MediaMuxer);
/frameworks/base/media/jni/
H A Dandroid_media_MediaMuxer.cpp18 #define LOG_TAG "MediaMuxer-JNI"
29 #include <media/stagefright/MediaMuxer.h>
46 sp<MediaMuxer> muxer(reinterpret_cast<MediaMuxer *>(nativeObject));
76 sp<MediaMuxer> muxer(reinterpret_cast<MediaMuxer *>(nativeObject));
141 MediaMuxer::OutputFormat fileFormat =
142 static_cast<MediaMuxer::OutputFormat>(format);
143 sp<MediaMuxer> muxer = new MediaMuxer(f
[all...]
/frameworks/av/media/libstagefright/
H A DMediaMuxer.cpp18 #define LOG_TAG "MediaMuxer"
24 #include <media/stagefright/MediaMuxer.h>
41 MediaMuxer::MediaMuxer(const char *path, OutputFormat format) function in class:android::MediaMuxer
56 MediaMuxer::MediaMuxer(int fd, OutputFormat format) function in class:android::MediaMuxer
71 MediaMuxer::~MediaMuxer() {
80 ssize_t MediaMuxer::addTrack(const sp<AMessage> &format) {
104 status_t MediaMuxer
[all...]
H A DAndroid.mk40 MediaMuxer.cpp \
/frameworks/av/media/ndk/
H A DNdkMediaMuxer.cpp31 #include <media/stagefright/MediaMuxer.h>
49 sp<MediaMuxer> mImpl;
59 mData->mImpl = new MediaMuxer(fd, (android::MediaMuxer::OutputFormat)format);
/frameworks/av/cmds/stagefright/
H A Dmuxer.cpp32 #include <media/stagefright/MediaMuxer.h>
75 sp<MediaMuxer> muxer = new MediaMuxer(outputFileName,
76 MediaMuxer::OUTPUT_FORMAT_MPEG_4);
/frameworks/base/media/java/android/media/
H A DMediaMuxer.java29 * MediaMuxer facilitates muxing elementary streams. Currently only supports an
36 * MediaMuxer muxer = new MediaMuxer("temp.mp4", OutputFormat.MUXER_OUTPUT_MPEG_4);
64 final public class MediaMuxer { class
75 * in include/media/stagefright/MediaMuxer.h!
115 * @see android.media.MediaMuxer.OutputFormat
118 public MediaMuxer(String path, int format) throws IOException { method in class:MediaMuxer
302 * MediaMuxer uses the flags provided in {@link MediaCodec.BufferInfo},
/frameworks/av/cmds/screenrecord/
H A Dscreenrecord.cpp49 #include <media/stagefright/MediaMuxer.h>
306 * Runs the MediaCodec encoder, sending the output to the MediaMuxer. The
315 const sp<MediaMuxer>& muxer, FILE* rawFp, const sp<IBinder>& mainDpy,
360 // ignore this -- we passed the CSD into MediaMuxer when
405 // The MediaMuxer docs are unclear, but it appears that we
634 sp<MediaMuxer> muxer = NULL;
640 muxer = new MediaMuxer(fileName, MediaMuxer::OUTPUT_FORMAT_MPEG_4);
978 // MediaMuxer tries to create the file in the constructor, but we don't

Completed in 205 milliseconds