Home | History | Annotate | Download | only in filters

Lines Matching full:codec_context

66 int FFmpegVideoDecoder::GetVideoBuffer(AVCodecContext* codec_context,
70 // whereas |codec_context| contains the current threads's
73 VideoFrame::Format format = PixelFormatToVideoFormat(codec_context->pix_fmt);
78 gfx::Size size(codec_context->width, codec_context->height);
84 if (codec_context->sample_aspect_ratio.num > 0) {
86 codec_context->sample_aspect_ratio.num,
87 codec_context->sample_aspect_ratio.den);
108 frame->pkt_pts = codec_context->pkt ? codec_context->pkt->pts :
110 frame->width = codec_context->width;
111 frame->height = codec_context->height;
112 frame->format = codec_context->pix_fmt;