summaryrefslogtreecommitdiffstats
path: root/libavcodec/dv.c
diff options
context:
space:
mode:
authorZdenek Kabelac <kabi@informatics.muni.cz>2002-11-12 15:00:04 +0000
committerZdenek Kabelac <kabi@informatics.muni.cz>2002-11-12 15:00:04 +0000
commit18f770162b9d079f2d278a719d7684dd19d86202 (patch)
tree5c77ea1c50f73765a3378392b4d311c8543329f0 /libavcodec/dv.c
parent92ddb69283d36a3b930fe94ab9f1b4503939b5d1 (diff)
downloadffmpeg-streaming-18f770162b9d079f2d278a719d7684dd19d86202.zip
ffmpeg-streaming-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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c
index dc27dc8..d7062c5 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;
OpenPOWER on IntegriCloud