HomeSort by relevance Sort by last modified time
    Searched refs:videoFormat (Results 1 - 24 of 24) sorted by null

  /cts/tests/tests/media/src/android/media/cts/
DecodeAccuracyTest.java 39 new VideoFormat(H264_VIDEO_FILE_NAME));
45 getLargerHeightVideoFormat(new VideoFormat(H264_VIDEO_FILE_NAME)));
51 getLargerWidthVideoFormat(new VideoFormat(H264_VIDEO_FILE_NAME)));
57 new VideoFormat(H264_VIDEO_FILE_NAME));
63 getLargerHeightVideoFormat(new VideoFormat(H264_VIDEO_FILE_NAME)));
69 getLargerWidthVideoFormat(new VideoFormat(H264_VIDEO_FILE_NAME)));
76 new VideoFormat(VP9_VIDEO_FILE_NAME));
82 getLargerHeightVideoFormat(new VideoFormat(VP9_VIDEO_FILE_NAME)));
88 getLargerWidthVideoFormat(new VideoFormat(VP9_VIDEO_FILE_NAME)));
94 new VideoFormat(VP9_VIDEO_FILE_NAME))
    [all...]
DecodeAccuracyTestBase.java 138 * @param videoFormat is the format of the video to extract and decode.
143 Surface surface, VideoFormat videoFormat, int numOfTotalFrames) {
145 if (prepare(surface, videoFormat)) {
159 public PlayerResult decodeVideoFrames(VideoFormat videoFormat, int numOfTotalFrames) {
160 return decodeVideoFrames(null, videoFormat, numOfTotalFrames);
167 private boolean prepare(Surface surface, VideoFormat videoFormat) {
168 if (!setExtractorDataSource(videoFormat)) {
    [all...]
  /external/opencv3/modules/cudacodec/src/
video_decoder.cpp 48 void cv::cudacodec::detail::VideoDecoder::create(const FormatInfo& videoFormat)
52 cudaVideoCodec _codec = static_cast<cudaVideoCodec>(videoFormat.codec);
53 cudaVideoChromaFormat _chromaFormat = static_cast<cudaVideoChromaFormat>(videoFormat.chromaFormat);
82 createInfo_.ulWidth = videoFormat.width;
83 createInfo_.ulHeight = videoFormat.height;
87 while (createInfo_.ulNumDecodeSurfaces * videoFormat.width * videoFormat.height > 16 * 1024 * 1024)
video_decoder.hpp 58 VideoDecoder(const FormatInfo& videoFormat, CUvideoctxlock lock) : lock_(lock), decoder_(0)
60 create(videoFormat);
68 void create(const FormatInfo& videoFormat);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_vui.h 93 u32 videoFormat;
h264bsd_vui.c 148 pVuiParameters->videoFormat = tmp;
188 pVuiParameters->videoFormat = 5;
  /packages/apps/TV/src/com/android/tv/ui/sidepanel/
CustomizeChannelListFragment.java 235 String videoFormat = channel.getVideoFormat();
236 return videoFormat != null &&
237 (Channels.VIDEO_FORMAT_720P.equals(videoFormat)
238 || Channels.VIDEO_FORMAT_1080I.equals(videoFormat)
239 || Channels.VIDEO_FORMAT_1080P.equals(videoFormat)
240 || Channels.VIDEO_FORMAT_2160P.equals(videoFormat)
241 || Channels.VIDEO_FORMAT_4320P.equals(videoFormat));
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
MediaDecoder.java 252 MediaFormat videoFormat = mMediaExtractor.getTrackFormat(mVideoTrackIndex);
254 ? new GpuVideoTrackDecoder(mVideoTrackIndex, videoFormat, this)
255 : new CpuVideoTrackDecoder(mVideoTrackIndex, videoFormat, this);
  /packages/apps/TV/tests/common/src/com/android/tv/testing/
ChannelUtils.java 93 String videoFormat = channel.getVideoFormat();
94 if (videoFormat != null) {
95 values.put(Channels.COLUMN_VIDEO_FORMAT, videoFormat);
  /frameworks/av/media/libstagefright/
StagefrightMetadataRetriever.cpp 151 sp<AMessage> videoFormat;
152 if (convertMetaDataToMessage(trackMeta, &videoFormat) != OK) {
159 videoFormat->setInt32("color-format", OMX_COLOR_FormatYUV420Planar);
164 videoFormat->setInt32("android._num-input-buffers", 1);
165 videoFormat->setInt32("android._num-output-buffers", 1);
178 err = decoder->configure(videoFormat, NULL /* surface */, NULL /* crypto */, 0 /* flags */);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
MediaRecorderTest.java 82 int videoFormat, int outFormat, String outFile, boolean videoOnly) {
96 mRecorder.setVideoEncoder(videoFormat);
229 int videoFormat, int outFormat, String outFile, boolean videoOnly,
248 recorder.setVideoEncoder(videoFormat);
375 int videoFormat, int outFormat, String outFile, boolean videoOnly) {
388 mRecorder.setVideoEncoder(videoFormat);
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/
TvContractUtils.java 100 String videoFormat = getVideoFormat(channel.videoHeight);
101 if (videoFormat != null) {
102 values.put(Channels.COLUMN_VIDEO_FORMAT, videoFormat);
  /frameworks/av/services/camera/libcameraservice/api1/client2/
StreamingProcessor.cpp 334 currentFormat != (uint32_t)params.videoFormat ||
370 currentFormat != (uint32_t)params.videoFormat ||
393 params.videoFormat, params.videoDataSpace,
Parameters.h 134 int videoWidth, videoHeight, videoFormat;
Parameters.cpp     [all...]
  /frameworks/base/media/java/android/media/tv/
TvContract.java 620 * @param videoFormat The video format defined in {@link Channels}.
626 public static final String getVideoResolution(String videoFormat) {
627 return VIDEO_FORMAT_TO_RESOLUTION_MAP.get(videoFormat);
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
MediaPlayerPerformance.java 222 private boolean stressVideoRecord(int frameRate, int width, int height, int videoFormat,
240 mRecorder.setVideoEncoder(videoFormat);
  /packages/apps/TV/src/com/android/tv/data/
Channel.java 331 + ", videoFormat=" + mVideoFormat
458 public Builder setVideoFormat(String videoFormat) {
459 mChannel.mVideoFormat = videoFormat;
  /packages/apps/TV/src/com/android/tv/util/
Utils.java 363 public static String getVideoDefinitionLevelString(Context context, int videoFormat) {
364 switch (videoFormat) {
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayer.cpp     [all...]
  /frameworks/av/services/camera/libcameraservice/api1/
Camera2Client.cpp     [all...]
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/system_23/
android.jar 

Completed in 909 milliseconds