Skip to content
Snippets Groups Projects
Commit af0554e5 authored by Aurelien Jacobs's avatar Aurelien Jacobs
Browse files

remove useless cast

Originally committed as revision 24553 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 349d78fe
No related branches found
No related tags found
No related merge requests found
...@@ -460,7 +460,7 @@ static int dvdsub_decode(AVCodecContext *avctx, ...@@ -460,7 +460,7 @@ static int dvdsub_decode(AVCodecContext *avctx,
{ {
const uint8_t *buf = avpkt->data; const uint8_t *buf = avpkt->data;
int buf_size = avpkt->size; int buf_size = avpkt->size;
AVSubtitle *sub = (void *)data; AVSubtitle *sub = data;
int is_menu; int is_menu;
is_menu = decode_dvd_subtitles(sub, buf, buf_size); is_menu = decode_dvd_subtitles(sub, buf, buf_size);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment