| Index: media/filters/ffmpeg_video_decoder.cc
|
| diff --git a/media/filters/ffmpeg_video_decoder.cc b/media/filters/ffmpeg_video_decoder.cc
|
| index bc2346ddf8843526fde8ae980e847488e7ba0b13..70226bc0bf1608ae7e32458dd0f1fd7f004427f8 100644
|
| --- a/media/filters/ffmpeg_video_decoder.cc
|
| +++ b/media/filters/ffmpeg_video_decoder.cc
|
| @@ -69,7 +69,7 @@ int FFmpegVideoDecoder::GetVideoBuffer(AVCodecContext* codec_context,
|
| if (format == VideoFrame::UNKNOWN)
|
| return AVERROR(EINVAL);
|
| DCHECK(format == VideoFrame::YV12 || format == VideoFrame::YV16 ||
|
| - format == VideoFrame::YV12J);
|
| + format == VideoFrame::YV12J || format == VideoFrame::I444);
|
|
|
| gfx::Size size(codec_context->width, codec_context->height);
|
| const int ret = av_image_check_size(size.width(), size.height(), 0, NULL);
|
|
|