Browse Source

remove useless cast

Originally committed as revision 24553 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Aurelien Jacobs 15 years ago
parent
commit
af0554e530
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/dvdsubdec.c

+ 1
- 1
libavcodec/dvdsubdec.c View File

@@ -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);


Loading…
Cancel
Save