diff options
author | Reynaldo H. Verdejo Pinochet <reynaldo@opendot.cl> | 2006-10-27 22:08:02 +0000 |
---|---|---|
committer | Reynaldo H. Verdejo Pinochet <reynaldo@opendot.cl> | 2006-10-27 22:08:02 +0000 |
commit | 418f17e0060b2f8e8540441124752bed82444d4d (patch) | |
tree | a4df506e853d2e2f9472457dbae92a4435b8945f | |
parent | d024359a36993bdfc99f11ebba3b6a15bbaaaad4 (diff) | |
download | ffmpeg-418f17e0060b2f8e8540441124752bed82444d4d.tar.gz |
Fix obvious typo, BGR555 was missing
Originally committed as revision 6812 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/imgconvert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c index 575d47ec01..178b0cbe07 100644 --- a/libavcodec/imgconvert.c +++ b/libavcodec/imgconvert.c @@ -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; |