Home
last modified time | relevance | path

Searched refs:videoFormat (Results 1 – 13 of 13) sorted by relevance

/frameworks/av/media/libstagefright/
DFrameDecoder.cpp204 sp<AMessage> videoFormat = onGetFormatAndSeekOptions( in init() local
206 if (videoFormat == NULL) { in init()
222 videoFormat, NULL /* surface */, NULL /* crypto */, 0 /* flags */); in init()
441 sp<AMessage> videoFormat; in onGetFormatAndSeekOptions() local
442 if (convertMetaDataToMessage(trackMeta(), &videoFormat) != OK) { in onGetFormatAndSeekOptions()
449 videoFormat->setInt32("color-format", OMX_COLOR_FormatYUV420Planar); in onGetFormatAndSeekOptions()
457 videoFormat->setInt32("android._num-input-buffers", 1); in onGetFormatAndSeekOptions()
458 videoFormat->setInt32("android._num-output-buffers", 1); in onGetFormatAndSeekOptions()
460 return videoFormat; in onGetFormatAndSeekOptions()
618 sp<AMessage> videoFormat; in onGetFormatAndSeekOptions() local
[all …]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
DMediaDecoder.java252 MediaFormat videoFormat = mMediaExtractor.getTrackFormat(mVideoTrackIndex); in onStart() local
254 ? new GpuVideoTrackDecoder(mVideoTrackIndex, videoFormat, this) in onStart()
255 : new CpuVideoTrackDecoder(mVideoTrackIndex, videoFormat, this); in onStart()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
DMediaRecorderTest.java82 int videoFormat, int outFormat, String outFile, boolean videoOnly) { in recordVideo() argument
96 mRecorder.setVideoEncoder(videoFormat); in recordVideo()
229 int videoFormat, int outFormat, String outFile, boolean videoOnly, in recordVideoFromSurface() argument
248 recorder.setVideoEncoder(videoFormat); in recordVideoFromSurface()
375 int videoFormat, int outFormat, String outFile, boolean videoOnly) { in invalidRecordSetting() argument
388 mRecorder.setVideoEncoder(videoFormat); in invalidRecordSetting()
/frameworks/av/services/camera/libcameraservice/api1/client2/
DStreamingProcessor.cpp326 !streamInfo.matchFormat((uint32_t)params.videoFormat) || in recordingStreamNeedsUpdate()
358 !streamInfo.matchFormat((uint32_t)params.videoFormat) || in updateRecordingStream()
381 params.videoFormat, params.videoDataSpace, in updateRecordingStream()
DParameters.h142 int videoWidth, videoHeight, videoFormat; member
DParameters.cpp917 videoFormat = HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED; in initialize()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
DMediaPlayerPerformance.java222 private boolean stressVideoRecord(int frameRate, int width, int height, int videoFormat, in stressVideoRecord() argument
240 mRecorder.setVideoEncoder(videoFormat); in stressVideoRecord()
/frameworks/support/tv-provider/src/main/java/androidx/tvprovider/media/tv/
DTvContractCompat.java1848 public static String getVideoResolution(@VideoFormat String videoFormat) { in getVideoResolution() argument
1849 return VIDEO_FORMAT_TO_RESOLUTION_MAP.get(videoFormat); in getVideoResolution()
DChannel.java691 public Builder setVideoFormat(@VideoFormat String videoFormat) { in setVideoFormat() argument
692 mValues.put(Channels.COLUMN_VIDEO_FORMAT, videoFormat); in setVideoFormat()
/frameworks/base/media/java/android/media/tv/
DTvContract.java1981 public static final String getVideoResolution(@VideoFormat String videoFormat) { in getVideoResolution() argument
1982 return VIDEO_FORMAT_TO_RESOLUTION_MAP.get(videoFormat); in getVideoResolution()
/frameworks/av/media/libmediaplayerservice/nuplayer/
DNuPlayer.cpp1867 sp<AMessage> videoFormat = mSource->getFormat(false /* audio */); in determineAudioModeChange() local
1869 const bool hasVideo = (videoFormat != NULL); in determineAudioModeChange()
/frameworks/av/media/libmediaplayer2/nuplayer2/
DNuPlayer2.cpp1913 sp<AMessage> videoFormat = mSource->getFormat(false /* audio */); in determineAudioModeChange() local
1915 const bool hasVideo = (videoFormat != NULL); in determineAudioModeChange()
/frameworks/av/services/camera/libcameraservice/api1/
DCamera2Client.cpp2256 l.mParameters.videoFormat = format; in setVideoTarget()