diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2010-07-27 21:12:16 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2010-07-27 21:12:16 +0000 |
commit | af0554e5306ba163fcaa15e148cdad5f9781fd50 (patch) | |
tree | 75907a3d0902329de06be2f9a397f3b3f366d8da /libavcodec | |
parent | 349d78fe628bf649b614fc4f19f8cf90575ee5cd (diff) | |
download | ffmpeg-af0554e5306ba163fcaa15e148cdad5f9781fd50.tar.gz |
remove useless cast
Originally committed as revision 24553 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dvdsubdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dvdsubdec.c b/libavcodec/dvdsubdec.c index 98b766e653..ea7467fdf5 100644 --- a/libavcodec/dvdsubdec.c +++ b/libavcodec/dvdsubdec.c @@ -460,7 +460,7 @@ static int dvdsub_decode(AVCodecContext *avctx, { const uint8_t *buf = avpkt->data; int buf_size = avpkt->size; - AVSubtitle *sub = (void *)data; + AVSubtitle *sub = data; int is_menu; is_menu = decode_dvd_subtitles(sub, buf, buf_size); |