Home
last modified time | relevance | path

Searched refs:OutputFormat (Results 1 – 25 of 42) sorted by relevance

12

/aosp12/frameworks/base/media/java/android/media/
H A DMediaMuxer.java257 public static final class OutputFormat { class in MediaMuxer
261 private OutputFormat() {} in OutputFormat() method in MediaMuxer.OutputFormat
280 OutputFormat.MUXER_OUTPUT_MPEG_4,
281 OutputFormat.MUXER_OUTPUT_WEBM,
282 OutputFormat.MUXER_OUTPUT_3GPP,
283 OutputFormat.MUXER_OUTPUT_HEIF,
284 OutputFormat.MUXER_OUTPUT_OGG,
385 if (format < OutputFormat.MUXER_OUTPUT_FIRST || format > OutputFormat.MUXER_OUTPUT_LAST) { in setUpMediaMuxer()
H A DMediaRecorder.java618 OutputFormat.DEFAULT,
619 OutputFormat.THREE_GPP,
620 OutputFormat.MPEG_4,
621 OutputFormat.AMR_NB,
622 OutputFormat.AMR_WB,
623 OutputFormat.AAC_ADIF,
624 OutputFormat.AAC_ADTS,
625 OutputFormat.MPEG_2_TS,
626 OutputFormat.WEBM,
627 OutputFormat.HEIF,
[all …]
/aosp12/system/extras/simpleperf/
H A Dcmd_inject.cpp71 enum class OutputFormat { enum
141 const char* open_mode = (output_format_ == OutputFormat::AutoFDO) ? "w" : "wb"; in Run()
192 output_format_ = OutputFormat::AutoFDO; in ParseOptions()
194 output_format_ = OutputFormat::BranchList; in ParseOptions()
250 if (output_format_ == OutputFormat::AutoFDO) { in ProcessRecord()
253 } else if (output_format_ == OutputFormat::BranchList) { in ProcessRecord()
314 if (output_format_ != OutputFormat::AutoFDO) { in ProcessBranchListFile()
412 if (output_format_ == OutputFormat::AutoFDO) { in WriteOutput()
416 CHECK(output_format_ == OutputFormat::BranchList); in WriteOutput()
591 OutputFormat output_format_ = OutputFormat::AutoFDO;
/aosp12/art/dexdump/
H A Ddexdump.h34 enum OutputFormat { enum
51 OutputFormat outputFormat;
/aosp12/frameworks/av/media/tests/benchmark/MediaBenchmarkTest/src/androidTest/java/com/android/media/benchmark/tests/
H A DMuxerTest.java65 put("mp4", MediaMuxer.OutputFormat.MUXER_OUTPUT_MPEG_4);
66 put("webm", MediaMuxer.OutputFormat.MUXER_OUTPUT_WEBM);
67 put("3gpp", MediaMuxer.OutputFormat.MUXER_OUTPUT_3GPP);
68 put("ogg", MediaMuxer.OutputFormat.MUXER_OUTPUT_OGG);
/aosp12/frameworks/av/media/ndk/include/media/
H A DNdkMediaMuxer.h55 } OutputFormat; typedef
73 AMediaMuxer* AMediaMuxer_new(int fd, OutputFormat format) __INTRODUCED_IN(21);
/aosp12/frameworks/av/media/libstagefright/include/media/stagefright/
H A DMediaMuxer.h53 MediaMuxer(int fd, OutputFormat format);
130 const OutputFormat mFormat;
H A DMediaMuxerBase.h38 enum OutputFormat { enum
H A DMediaAppender.h62 MediaMuxer::OutputFormat mFormat;
/aosp12/frameworks/av/media/libstagefright/tests/fuzzers/
H A DMediaMuxerFuzzer.cpp53 MediaMuxer::OutputFormat format = in LLVMFuzzerTestOneInput()
54 (MediaMuxer::OutputFormat)fdp.ConsumeIntegralInRange<int32_t>(0, 4); in LLVMFuzzerTestOneInput()
/aosp12/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
H A DMediaRecorderTest.java141 recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); in validateGetSurface()
350 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); in recordVideoWithPara()
486 MediaRecorder.OutputFormat.THREE_GPP, in testPortraitH263()
502 MediaRecorder.OutputFormat.THREE_GPP, MediaNames.INVALD_VIDEO_PATH, false); in testInvalidVideoPath()
566 MediaRecorder.OutputFormat.THREE_GPP, filename, in testSurfaceRecording()
594 MediaRecorder.OutputFormat.THREE_GPP, filename, in testPersistentSurfaceRecording()
633 MediaRecorder.OutputFormat.THREE_GPP, in testSurfaceRecordingTimeLapse()
/aosp12/frameworks/base/tools/aapt2/cmd/
H A DLink.h33 enum class OutputFormat { enum
47 OutputFormat output_format = OutputFormat::kApk;
H A DLink.cpp243 OutputFormat format, IArchiveWriter* writer) { in FlattenXml()
252 case OutputFormat::kApk: { in FlattenXml()
267 case OutputFormat::kProto: { in FlattenXml()
300 OutputFormat output_format = OutputFormat::kApk;
505 ResourceFile::Type XmlFileTypeForOutputFormat(OutputFormat format) { in XmlFileTypeForOutputFormat()
507 case OutputFormat::kApk: in XmlFileTypeForOutputFormat()
509 case OutputFormat::kProto: in XmlFileTypeForOutputFormat()
1071 case OutputFormat::kApk: { in FlattenTable()
1084 case OutputFormat::kProto: { in FlattenTable()
2306 options_.output_format = OutputFormat::kProto; in Action()
[all …]
/aosp12/frameworks/av/media/ndk/
H A DNdkMediaMuxer.cpp43 AMediaMuxer* AMediaMuxer_new(int fd, OutputFormat format) { in AMediaMuxer_new()
49 mData->mImpl = new (std::nothrow) MediaMuxer(fd, (android::MediaMuxer::OutputFormat)format); in AMediaMuxer_new()
/aosp12/art/dexlayout/
H A Ddexlayout.h44 enum OutputFormat { enum
70 OutputFormat output_format_ = kOutputPlain;
/aosp12/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
H A DMediaPlayerPerformance.java269 mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); in stressAudioRecord()
461 MediaRecorder.VideoEncoder.H263, MediaRecorder.OutputFormat.MPEG_4, in testH263RecordVideoOnlyMemoryUsage()
482 MediaRecorder.VideoEncoder.MPEG_4_SP, MediaRecorder.OutputFormat.MPEG_4, in testMpeg4RecordVideoOnlyMemoryUsage()
504 MediaRecorder.VideoEncoder.H263, MediaRecorder.OutputFormat.MPEG_4, in testRecordVideoAudioMemoryUsage()
/aosp12/frameworks/base/media/jni/
H A Dandroid_media_MediaMuxer.cpp166 MediaMuxer::OutputFormat fileFormat = in android_media_MediaMuxer_native_setup()
167 static_cast<MediaMuxer::OutputFormat>(format); in android_media_MediaMuxer_native_setup()
/aosp12/frameworks/av/cmds/stagefright/
H A Dmuxer.cpp64 MediaMuxer::OutputFormat container = MediaMuxer::OUTPUT_FORMAT_MPEG_4) { in muxing()
240 MediaMuxer::OutputFormat container = MediaMuxer::OUTPUT_FORMAT_MPEG_4; in main()
/aosp12/frameworks/av/media/libstagefright/
H A DMediaMuxer.cpp43 static bool isMp4Format(MediaMuxer::OutputFormat format) { in isMp4Format()
49 MediaMuxer::MediaMuxer(int fd, OutputFormat format) in MediaMuxer()
/aosp12/frameworks/av/media/tests/benchmark/src/native/muxer/
H A DMuxer.cpp30 mMuxer = AMediaMuxer_new(fd, (OutputFormat)outputFormat); in initMuxer()
/aosp12/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
H A DMmsVideoRecorder.java124 if (mCamcorderProfile.fileFormat == OutputFormat.MPEG_4) { in getContentType()
H A DLevelTrackingMediaRecorder.java62 private static final int MEDIA_RECORDER_OUTPUT_FORMAT = MediaRecorder.OutputFormat.THREE_GPP;
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/
H A DScreenMediaRecorder.java122 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4); in prepare()
314 mMuxer = new ScreenRecordingMuxer(MediaMuxer.OutputFormat.MUXER_OUTPUT_MPEG_4, in save()
/aosp12/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DMediaRecorderStateUnitTestTemplate.java40 public static final int OUTPUT_FORMAT= MediaRecorder.OutputFormat.THREE_GPP;
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DVideoUtils.java138 muxer = new MediaMuxer(dstPath, MediaMuxer.OutputFormat.MUXER_OUTPUT_MPEG_4); in genVideoUsingMuxer()

12