diff options
author | Diego Biurrun | 2007-06-12 18:50:50 +0000 |
---|---|---|
committer | Diego Biurrun | 2007-06-12 18:50:50 +0000 |
commit | 90b5b51eab008ddb24701bb95aa4c017e62bb111 (patch) | |
tree | 47bc9eb153584ccf309c27277fb56c2d1468230f /libavcodec/flicvideo.c | |
parent | c294d7c6bafb5115dbaffd12aec4530ffed3a0b4 (diff) |
misc typo fixes
Originally committed as revision 9291 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/flicvideo.c')
-rw-r--r-- | libavcodec/flicvideo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flicvideo.c b/libavcodec/flicvideo.c index 5ccc79b4c6..7326b5d8c0 100644 --- a/libavcodec/flicvideo.c +++ b/libavcodec/flicvideo.c @@ -584,7 +584,7 @@ static int flic_decode_frame_15_16BPP(AVCodecContext *avctx, * a second pass over the line here, swapping the bytes. */ pixel = 0xFF00; - if (0xFF00 != AV_RL16(&pixel)) /* Check if its not an LE Target */ + if (0xFF00 != AV_RL16(&pixel)) /* Check if it is not an LE target */ { pixel_ptr = y_ptr; pixel_countdown = s->avctx->width; |