Lines Matching defs:muxer
46 sp<MediaMuxer> muxer(reinterpret_cast<MediaMuxer *>(nativeObject));
47 if (muxer == NULL) {
49 "Muxer was not set up correctly");
63 jint trackIndex = muxer->addTrack(trackformat);
67 "Failed to add the track to the muxer");
76 sp<MediaMuxer> muxer(reinterpret_cast<MediaMuxer *>(nativeObject));
77 if (muxer == NULL) {
79 "Muxer was not set up correctly");
121 status_t err = muxer->writeSampleData(buffer, trackIndex, timeUs, flags);
143 sp<MediaMuxer> muxer = new MediaMuxer(fd, fileFormat);
144 muxer->incStrong(clazz);
145 return reinterpret_cast<jlong>(muxer.get());
150 sp<MediaMuxer> muxer(reinterpret_cast<MediaMuxer *>(nativeObject));
151 if (muxer == NULL) {
153 "Muxer was not set up correctly");
156 status_t err = muxer->setOrientationHint(degrees);
168 MediaMuxer* muxer = reinterpret_cast<MediaMuxer *>(nativeObject);
170 status_t res = muxer->setLocation(latitude, longitude);
180 sp<MediaMuxer> muxer(reinterpret_cast<MediaMuxer *>(nativeObject));
181 if (muxer == NULL) {
183 "Muxer was not set up correctly");
186 status_t err = muxer->start();
190 "Failed to start the muxer");
198 sp<MediaMuxer> muxer(reinterpret_cast<MediaMuxer *>(nativeObject));
199 if (muxer == NULL) {
201 "Muxer was not set up correctly");
205 status_t err = muxer->stop();
209 "Failed to stop the muxer");
216 sp<MediaMuxer> muxer(reinterpret_cast<MediaMuxer *>(nativeObject));
217 if (muxer != NULL) {
218 muxer->decStrong(clazz);