Fix obvious typo, BGR555 was missing

Originally committed as revision 6812 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reynaldo H. Verdejo Pinochet 2006-10-27 22:08:02 +00:00
parent d024359a36
commit 418f17e006
1 changed files with 1 additions and 1 deletions

View File

@ -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;