mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Update the dvdsub parser to be able to parse HD-DVD subtitle packets.
Patch by: Ian Caulfield, ian caulfield & gmx at Originally committed as revision 9790 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
4e16a060a0
commit
e4f42564bb
@ -43,6 +43,8 @@ static int dvdsub_parse(AVCodecParserContext *s,
|
||||
if (buf_size < 2)
|
||||
return 0;
|
||||
pc->packet_len = AV_RB16(buf);
|
||||
if (pc->packet_len == 0) /* HD-DVD subpicture packet */
|
||||
pc->packet_len = AV_RB32(buf+2);
|
||||
av_freep(&pc->packet);
|
||||
pc->packet = av_malloc(pc->packet_len);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user