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

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
ChromaFormat.java 28 public class ChromaFormat {
29 public static ChromaFormat MONOCHROME = new ChromaFormat(0, 0, 0);
30 public static ChromaFormat YUV_420 = new ChromaFormat(1, 2, 2);
31 public static ChromaFormat YUV_422 = new ChromaFormat(2, 2, 1);
32 public static ChromaFormat YUV_444 = new ChromaFormat(3, 1, 1);
38 public ChromaFormat(int id, int subWidth, int subHeight)
    [all...]
SeqParameterSet.java 46 public ChromaFormat chroma_format_idc;
96 sps.chroma_format_idc = ChromaFormat.fromId(reader
98 if (sps.chroma_format_idc == ChromaFormat.YUV_444) {
114 sps.chroma_format_idc = ChromaFormat.YUV_420;
325 if (chroma_format_idc == ChromaFormat.YUV_444) {
  /external/opencv3/modules/cudacodec/include/opencv2/
cudacodec.hpp 263 enum ChromaFormat
276 ChromaFormat chromaFormat;
  /external/opencv3/modules/cudacodec/src/
video_decoder.cpp 53 cudaVideoChromaFormat _chromaFormat = static_cast<cudaVideoChromaFormat>(videoFormat.chromaFormat);
90 createInfo_.ChromaFormat = _chromaFormat;
video_decoder.hpp 81 cudaVideoChromaFormat chromaFormat() const { return createInfo_.ChromaFormat; }
cuvid_video_source.cpp 72 format_.chromaFormat = static_cast<ChromaFormat>(vidfmt.chroma_format);
ffmpeg_video_source.cpp 113 format_.chromaFormat = static_cast<ChromaFormat>(chroma_format);
video_parser.cpp 108 format->chroma_format != thiz->videoDecoder_->chromaFormat())
113 newFormat.chromaFormat = static_cast<ChromaFormat>(format->chroma_format);

Completed in 92 milliseconds