[FFmpeg-cvslog] swscale: Unbreak build with --enable-small
Mohamed Naufal
git at videolan.org
Fri Jul 1 05:45:52 CEST 2011
ffmpeg | branch: master | Mohamed Naufal <naufal11 at gmail.com> | Thu Jun 30 11:57:32 2011 +0300| [705b21a06ed357ed2b432b967c4fcb09fb992d02] | committer: Martin Storsjö
swscale: Unbreak build with --enable-small
This fixes building with --enable-small, by using the correct
variable name.
Signed-off-by: Martin Storsjö <martin at martin.st>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=705b21a06ed357ed2b432b967c4fcb09fb992d02
---
libswscale/swscale.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libswscale/swscale.c b/libswscale/swscale.c
index 644f848..1e4994c 100644
--- a/libswscale/swscale.c
+++ b/libswscale/swscale.c
@@ -977,7 +977,7 @@ yuv2rgb_write(uint8_t *_dest, int i, int Y1, int Y2,
const uint32_t *b = (const uint32_t *) _b;
#if CONFIG_SMALL
- int sh = hasAlpha ? ((fmt == PIX_FMT_RGB32_1 || fmt == PIX_FMT_BGR32_1) ? 0 : 24) : 0;
+ int sh = hasAlpha ? ((target == PIX_FMT_RGB32_1 || target == PIX_FMT_BGR32_1) ? 0 : 24) : 0;
dest[i * 2 + 0] = r[Y1] + g[Y1] + b[Y1] + (hasAlpha ? A1 << sh : 0);
dest[i * 2 + 1] = r[Y2] + g[Y2] + b[Y2] + (hasAlpha ? A2 << sh : 0);
More information about the ffmpeg-cvslog
mailing list