diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-11-12 15:00:04 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-11-12 15:00:04 +0000 |
commit | 18f770162b9d079f2d278a719d7684dd19d86202 (patch) | |
tree | 5c77ea1c50f73765a3378392b4d311c8543329f0 /libavcodec/dv.c | |
parent | 92ddb69283d36a3b930fe94ab9f1b4503939b5d1 (diff) | |
download | ffmpeg-18f770162b9d079f2d278a719d7684dd19d86202.tar.gz |
* fixing some minor const warnings
Originally committed as revision 1205 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r-- | libavcodec/dv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c index dc27dc84c2..d7062c5699 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -495,7 +495,8 @@ static int dvvideo_decode_frame(AVCodecContext *avctx, UINT8 *buf, int buf_size) { DVVideoDecodeContext *s = avctx->priv_data; - int sct, dsf, apt, ds, nb_dif_segs, vs, size, width, height, i, packet_size; + int sct, dsf, apt, ds, nb_dif_segs, vs, width, height, i, packet_size; + unsigned size; UINT8 *buf_ptr; const UINT16 *mb_pos_ptr; AVPicture *picture; |