summaryrefslogtreecommitdiff
path: root/libavcodec/mjpeg.c
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2002-10-27 19:11:06 +0000
committerAlex Beregszaszi <alex@rtfs.hu>2002-10-27 19:11:06 +0000
commit9d3748bed3d2e03993c32cf87c12a7f0039d061c (patch)
tree8d90746862fe251a9458ab70af4491d55e611379 /libavcodec/mjpeg.c
parent7b5c80f6bbaa38251b338c3732c99d9abd6d3763 (diff)
2nd 10l (noticed by arpi)
Originally committed as revision 1082 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mjpeg.c')
-rw-r--r--libavcodec/mjpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mjpeg.c b/libavcodec/mjpeg.c
index f62891e244..7ca1601086 100644
--- a/libavcodec/mjpeg.c
+++ b/libavcodec/mjpeg.c
@@ -1283,7 +1283,7 @@ static int mjpeg_decode_frame(AVCodecContext *avctx,
while (src<buf_end)
{
- unsigned char *x = *(src++);
+ unsigned char x = *(src++);
*(dst++) = x;
if (x == 0xff)