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

1 2

  /cts/tests/tests/media/src/android/media/cts/
DecodeAccuracyTest.java 174 runTest(new GLSurfaceViewFactory(), new VideoFormat(fileName));
179 runTest(new GLSurfaceViewFactory(), getLargerHeightVideoFormat(new VideoFormat(fileName)));
184 runTest(new GLSurfaceViewFactory(), getLargerWidthVideoFormat(new VideoFormat(fileName)));
189 runTest(new SurfaceViewFactory(), new VideoFormat(fileName));
194 runTest(new SurfaceViewFactory(), getLargerHeightVideoFormat(new VideoFormat(fileName)));
199 runTest(new SurfaceViewFactory(), getLargerWidthVideoFormat(new VideoFormat(fileName)));
202 private void runTest(VideoViewFactory videoViewFactory, VideoFormat vf) {
235 private void decodeVideo(VideoFormat videoFormat, VideoViewFactory videoViewFactory) {
238 videoViewFactory.getSurface(), videoFormat, 10)
    [all...]
DecodeAccuracyTestBase.java 175 * @param videoFormat is the format of the video to extract and decode.
181 Surface surface, VideoFormat videoFormat, int numOfTotalFrames, long msPerFrameCap) {
184 if (prepareVideoDecode(videoFormat)) {
200 Surface surface, VideoFormat videoFormat, int numOfTotalFrames) {
201 return decodeVideoFrames(surface, videoFormat, numOfTotalFrames, 0);
204 public PlayerResult decodeVideoFrames(VideoFormat videoFormat, int numOfTotalFrames) {
205 return decodeVideoFrames(null, videoFormat, numOfTotalFrames, 0)
    [all...]
  /packages/apps/TV/src/com/android/tv/tuner/data/
TunerChannel.java 200 * @param videoFormat Video format. Should be {@code null} or one of the followings:
215 String shortName, boolean recordingProhibited, String videoFormat) {
226 if (videoFormat != null) {
227 tunerChannel.setVideoFormat(videoFormat);
433 synchronized public void setVideoFormat(String videoFormat) {
434 mProto.videoFormat = videoFormat == null ? "" : videoFormat;
438 return mProto.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 239 String videoFormat = channel.getVideoFormat();
240 return videoFormat != null &&
241 (Channels.VIDEO_FORMAT_720P.equals(videoFormat)
242 || Channels.VIDEO_FORMAT_1080I.equals(videoFormat)
243 || Channels.VIDEO_FORMAT_1080P.equals(videoFormat)
244 || Channels.VIDEO_FORMAT_2160P.equals(videoFormat)
245 || 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 92 String videoFormat = channel.getVideoFormat();
93 if (videoFormat != null) {
94 values.put(Channels.COLUMN_VIDEO_FORMAT, videoFormat);
  /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/media/libstagefright/
StagefrightMetadataRetriever.cpp 311 sp<AMessage> videoFormat;
312 if (convertMetaDataToMessage(overrideMeta, &videoFormat) != OK) {
319 videoFormat->setInt32("color-format", OMX_COLOR_FormatYUV420Planar);
327 videoFormat->setInt32("android._num-input-buffers", 1);
328 videoFormat->setInt32("android._num-output-buffers", 1);
342 err = decoder->configure(videoFormat, NULL /* surface */, NULL /* crypto */, 0 /* flags */);
  /frameworks/av/services/camera/libcameraservice/api1/client2/
StreamingProcessor.cpp 326 !streamInfo.matchFormat((uint32_t)params.videoFormat) ||
358 !streamInfo.matchFormat((uint32_t)params.videoFormat) ||
381 params.videoFormat, params.videoDataSpace,
Parameters.h 142 int videoWidth, videoHeight, videoFormat;
Parameters.cpp     [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);
  /frameworks/support/tv-provider/src/android/support/media/tv/
Channel.java 30 import android.support.media.tv.TvContractCompat.Channels.VideoFormat;
154 public @VideoFormat String getVideoFormat() {
663 * @param videoFormat The value of {@link Channels#COLUMN_VIDEO_FORMAT} for the channel.
666 public Builder setVideoFormat(@VideoFormat String videoFormat) {
667 mValues.put(Channels.COLUMN_VIDEO_FORMAT, videoFormat);
    [all...]
TvContractCompat.java     [all...]
  /packages/apps/TV/src/com/android/tv/data/
Channel.java 363 + ", videoFormat=" + mVideoFormat
494 public Builder setVideoFormat(String videoFormat) {
495 mChannel.mVideoFormat = videoFormat;
  /prebuilts/sdk/current/support/tv-provider/
android-support-tv-provider.jar 
  /frameworks/base/media/java/android/media/tv/
TvContract.java     [all...]
  /packages/apps/TV/src/com/android/tv/util/
Utils.java 531 public static String getVideoDefinitionLevelString(Context context, int videoFormat) {
532 switch (videoFormat) {
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayer.cpp     [all...]
  /frameworks/av/services/camera/libcameraservice/api1/
Camera2Client.cpp     [all...]
  /device/google/marlin/camera/QCamera2/HAL3/
QCamera3HWI.cpp     [all...]
  /hardware/qcom/camera/msm8998/QCamera2/HAL3/
QCamera3HWI.cpp     [all...]

Completed in 1207 milliseconds

1 2