Commit 019b7c54 authored by reynaldo's avatar reynaldo

Fix obvious typo, BGR555 was missing

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6812 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 04019d93
......@@ -522,7 +522,7 @@ int avpicture_layout(const AVPicture* src, int pix_fmt, int width, int height,
if (pix_fmt == PIX_FMT_YUV422 ||
pix_fmt == PIX_FMT_UYVY422 ||
pix_fmt == PIX_FMT_BGR565 ||
pix_fmt == PIX_FMT_BGR565 ||
pix_fmt == PIX_FMT_BGR555 ||
pix_fmt == PIX_FMT_RGB565 ||
pix_fmt == PIX_FMT_RGB555)
w = width * 2;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment