Home | History | Annotate | Download | only in filters

Lines Matching refs:codec_info

248 // Verify that |codec_info| is supported on this platform.
250 // Returns true if |codec_info| is a valid audio/video codec and is allowed.
251 // |audio_codecs| has |codec_info|.tag added to its list if |codec_info| is an
253 // |video_codecs| has |codec_info|.tag added to its list if |codec_info| is a
258 const CodecInfo* codec_info,
261 switch (codec_info->type) {
264 if (codec_info->tag == CodecInfo::HISTOGRAM_EAC3) {
271 audio_codecs->push_back(codec_info->tag);
276 if (codec_info->tag == CodecInfo::HISTOGRAM_VP9 &&
282 video_codecs->push_back(codec_info->tag);
286 DVLOG(1) << "CodecInfo type of " << codec_info->type
319 const CodecInfo* codec_info = type_info.codecs[0];
320 if (codec_info && !codec_info->pattern &&
321 VerifyCodec(codec_info, audio_codecs, video_codecs)) {