/frameworks/av/include/ndk/ |
NdkMediaMuxer.h | 47 } OutputFormat; 52 AMediaMuxer* AMediaMuxer_new(int fd, OutputFormat format);
|
/prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/media/ |
NdkMediaMuxer.h | 47 } OutputFormat; 52 AMediaMuxer* AMediaMuxer_new(int fd, OutputFormat format);
|
/prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/media/ |
NdkMediaMuxer.h | 47 } OutputFormat; 52 AMediaMuxer* AMediaMuxer_new(int fd, OutputFormat format);
|
/prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/media/ |
NdkMediaMuxer.h | 47 } OutputFormat; 52 AMediaMuxer* AMediaMuxer_new(int fd, OutputFormat format);
|
/prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/media/ |
NdkMediaMuxer.h | 47 } OutputFormat; 52 AMediaMuxer* AMediaMuxer_new(int fd, OutputFormat format);
|
/prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/media/ |
NdkMediaMuxer.h | 47 } OutputFormat; 52 AMediaMuxer* AMediaMuxer_new(int fd, OutputFormat format);
|
/prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/media/ |
NdkMediaMuxer.h | 47 } OutputFormat; 52 AMediaMuxer* AMediaMuxer_new(int fd, OutputFormat format);
|
/frameworks/av/include/media/stagefright/ |
MediaMuxer.h | 44 // OutputFormat is updated. 45 enum OutputFormat { 52 MediaMuxer(const char *path, OutputFormat format); 56 MediaMuxer(int fd, OutputFormat format); 119 const OutputFormat mFormat;
|
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
cmsxform.c | 589 cmsUInt32Number Intent, cmsUInt32Number* InputFormat, cmsUInt32Number* OutputFormat, cmsUInt32Number* dwFlags) 606 if (Plugin ->Factory(&p->xform, &p->UserData, &p ->FreeUserData, &p ->Lut, InputFormat, OutputFormat, dwFlags)) { 616 p ->OutputFormat = *OutputFormat; 623 p ->ToOutput = _cmsGetFormatter(ContextID, *OutputFormat, cmsFormatterOutput, CMS_PACK_FLAGS_16BITS).Fmt16; 625 p ->ToOutputFloat = _cmsGetFormatter(ContextID, *OutputFormat, cmsFormatterOutput, CMS_PACK_FLAGS_FLOAT).FmtFloat; 633 _cmsOptimizePipeline(ContextID, &p->Lut, Intent, InputFormat, OutputFormat, dwFlags); 636 if (_cmsFormatterIsFloat(*InputFormat) && _cmsFormatterIsFloat(*OutputFormat)) { 640 p ->ToOutputFloat = _cmsGetFormatter(ContextID, *OutputFormat, cmsFormatterOutput, CMS_PACK_FLAGS_FLOAT).FmtFloat; 662 if (*InputFormat == 0 && *OutputFormat == 0) [all...] |
cmspack.c | [all...] |
/external/llvm/tools/llvm-size/ |
llvm-size.cpp | 38 OutputFormat("format", cl::desc("Specify output format"), 115 /// This is when used when @c OutputFormat is darwin and produces the same 194 /// This is when used when @c OutputFormat is berkeley with a Mach-O file and 276 /// The format used is determined by @c OutputFormat and @c Radix. 283 // If OutputFormat is darwin and we have a MachOObjectFile print as darwin's 284 // size(1) -m output, else if OutputFormat is darwin and not a Mach-O object 285 // let it fall through to OutputFormat berkeley. 287 if (OutputFormat == darwin && MachO) 289 // If we have a MachOObjectFile and the OutputFormat is berkeley print as 291 else if (MachO && OutputFormat == berkeley [all...] |
/frameworks/base/media/java/android/media/ |
MediaMuxer.java | 36 * MediaMuxer muxer = new MediaMuxer("temp.mp4", OutputFormat.MUXER_OUTPUT_MPEG_4); 73 public static final class OutputFormat { 77 private OutputFormat() {} 115 * @see android.media.MediaMuxer.OutputFormat 122 if (format != OutputFormat.MUXER_OUTPUT_MPEG_4 && 123 format != OutputFormat.MUXER_OUTPUT_WEBM) { 148 * {@link OutputFormat#MUXER_OUTPUT_MPEG_4} so that a video player can 171 * {@link OutputFormat#MUXER_OUTPUT_MPEG_4}, and is ignored for other output
|
/frameworks/av/media/ndk/ |
NdkMediaMuxer.cpp | 56 AMediaMuxer* AMediaMuxer_new(int fd, OutputFormat format) { 59 mData->mImpl = new MediaMuxer(fd, (android::MediaMuxer::OutputFormat)format);
|
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/v1/ |
CameraRecordingStream.java | 68 private int mOutputFormat = MediaMuxer.OutputFormat.MUXER_OUTPUT_MPEG_4; 85 * @param outputFormat Output file format as listed in {@link MediaMuxer.OutputFormat} 89 int outputFormat) { 105 mOutputFormat = outputFormat; 346 case MediaMuxer.OutputFormat.MUXER_OUTPUT_MPEG_4: 349 case MediaMuxer.OutputFormat.MUXER_OUTPUT_WEBM: 359 case MediaMuxer.OutputFormat.MUXER_OUTPUT_MPEG_4: 362 case MediaMuxer.OutputFormat.MUXER_OUTPUT_WEBM: 457 if (mOutputFormat == MediaMuxer.OutputFormat.MUXER_OUTPUT_MPEG_4) [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
MediaRecorderTest.java | 166 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.DEFAULT); 211 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.DEFAULT); 295 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.DEFAULT); 314 MediaRecorder.OutputFormat.AMR_NB, 320 MediaRecorder.OutputFormat.AMR_WB, 326 MediaRecorder.OutputFormat.AAC_ADTS, 366 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); 381 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); 400 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); 441 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP) [all...] |
MediaMuxerTest.java | 99 muxer = new MediaMuxer(outputFile, MediaMuxer.OutputFormat.MUXER_OUTPUT_MPEG_4); 110 muxer = new MediaMuxer(outputFile, MediaMuxer.OutputFormat.MUXER_OUTPUT_MPEG_4); 121 muxer = new MediaMuxer(outputFile, MediaMuxer.OutputFormat.MUXER_OUTPUT_MPEG_4); 131 muxer = new MediaMuxer(outputFile, MediaMuxer.OutputFormat.MUXER_OUTPUT_MPEG_4); 143 muxer = new MediaMuxer(outputFile, MediaMuxer.OutputFormat.MUXER_OUTPUT_MPEG_4); 152 muxer = new MediaMuxer(outputFile, MediaMuxer.OutputFormat.MUXER_OUTPUT_MPEG_4); 178 muxer = new MediaMuxer(dstMediaPath, MediaMuxer.OutputFormat.MUXER_OUTPUT_MPEG_4);
|
/external/clang/tools/scan-build/ |
ccc-analyzer | 453 my $OutputFormat = $ENV{'CCC_ANALYZER_OUTPUT_FORMAT'}; 454 if (!defined $OutputFormat) { $OutputFormat = "html"; } 685 if (defined $OutputFormat) { 686 push @AnalyzeArgs, "-analyzer-output=" . $OutputFormat; 687 if ($OutputFormat =~ /plist/) {
|
/prebuilts/misc/darwin-x86/analyzer/tools/scan-build/ |
ccc-analyzer | 449 my $OutputFormat = $ENV{'CCC_ANALYZER_OUTPUT_FORMAT'}; 450 if (!defined $OutputFormat) { $OutputFormat = "html"; } 677 if (defined $OutputFormat) { 678 push @AnalyzeArgs, "-analyzer-output=" . $OutputFormat; 679 if ($OutputFormat =~ /plist/) {
|
/prebuilts/misc/linux-x86/analyzer/tools/scan-build/ |
ccc-analyzer | 449 my $OutputFormat = $ENV{'CCC_ANALYZER_OUTPUT_FORMAT'}; 450 if (!defined $OutputFormat) { $OutputFormat = "html"; } 677 if (defined $OutputFormat) { 678 push @AnalyzeArgs, "-analyzer-output=" . $OutputFormat; 679 if ($OutputFormat =~ /plist/) {
|
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/ |
ImageReaderSubPane.java | 68 enum OutputFormat { 76 OutputFormat(int imageFormat) { 84 private final List<OutputFormat> mFormats = new ArrayList<>(); 100 private OutputFormat mConfiguredFormat = null; 174 OutputFormat oldFormat = null; 184 for (OutputFormat format : OutputFormat.values()) { 377 OutputFormat f = mFormats.get(mCurrentFormatId);
|
/cts/tests/tests/permission/src/android/permission/cts/ |
AudioPermissionTest.java | 50 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
|
/external/chromium_org/content/renderer/media/ |
media_stream_audio_processor.h | 103 const media::AudioParameters& OutputFormat() const;
|
/external/deqp/executor/tools/ |
xeTestLogCompare.cpp | 53 enum OutputFormat 73 DE_DECLARE_COMMAND_LINE_OPT(OutFormat, OutputFormat); 86 static const NamedValue<OutputFormat> s_outputFormats[] = 114 OutputFormat outFormat;
|
/external/llvm/tools/llvm-nm/ |
llvm-nm.cpp | 52 cl::opt<OutputFormatTy> OutputFormat( 59 cl::aliasopt(OutputFormat)); 261 // the OutputFormat is darwin. It produces the same output as darwin's nm(1) -m 427 if (OutputFormat == posix && MultipleFiles && printName) { 429 } else if (OutputFormat == bsd && MultipleFiles && printName) { 431 } else if (OutputFormat == sysv) { 462 if (OutputFormat == sysv || I->Address == UnknownAddressOrSize) 464 if (OutputFormat == sysv) 473 // If OutputFormat is darwin and we have a MachOObjectFile print as darwin's 474 // nm(1) -m output, else if OutputFormat is darwin and not a Mach-O objec [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
CopyCutAction.java | 24 import org.apache.xml.serialize.OutputFormat; 200 new OutputFormat(Method.XML, 201 OutputFormat.Defaults.Encoding /* utf-8 */,
|