mirror of https://git.ffmpeg.org/ffmpeg.git
Fix obvious typo, BGR555 was missing
Originally committed as revision 6812 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
d024359a36
commit
418f17e006
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue