Lines Matching full:muxer
47 sp<MediaMuxer> muxer(reinterpret_cast<MediaMuxer *>(nativeObject));
48 if (muxer == NULL) {
50 "Muxer was not set up correctly");
64 jint trackIndex = muxer->addTrack(trackformat);
68 "Failed to add the track to the muxer");
77 sp<MediaMuxer> muxer(reinterpret_cast<MediaMuxer *>(nativeObject));
78 if (muxer == NULL) {
80 "Muxer was not set up correctly");
122 status_t err = muxer->writeSampleData(buffer, trackIndex, timeUs, flags);
144 sp<MediaMuxer> muxer = new MediaMuxer(fd, fileFormat);
145 muxer->incStrong(clazz);
146 return int(muxer.get());
151 sp<MediaMuxer> muxer(reinterpret_cast<MediaMuxer *>(nativeObject));
152 if (muxer == NULL) {
154 "Muxer was not set up correctly");
157 status_t err = muxer->setOrientationHint(degrees);
169 MediaMuxer* muxer = reinterpret_cast<MediaMuxer *>(nativeObject);
171 status_t res = muxer->setLocation(latitude, longitude);
181 sp<MediaMuxer> muxer(reinterpret_cast<MediaMuxer *>(nativeObject));
182 if (muxer == NULL) {
184 "Muxer was not set up correctly");
187 status_t err = muxer->start();
191 "Failed to start the muxer");
199 sp<MediaMuxer> muxer(reinterpret_cast<MediaMuxer *>(nativeObject));
200 if (muxer == NULL) {
202 "Muxer was not set up correctly");
206 status_t err = muxer->stop();
210 "Failed to stop the muxer");
217 sp<MediaMuxer> muxer(reinterpret_cast<MediaMuxer *>(nativeObject));
218 if (muxer != NULL) {
219 muxer->decStrong(clazz);