[FFmpeg-cvslog] oggparsetheora: fix comment header parsing
Giorgio Vazzana
git at videolan.org
Tue Jan 15 15:20:50 CET 2013
ffmpeg | branch: master | Giorgio Vazzana <mywing81 at gmail.com> | Fri Oct 5 13:37:20 2012 +0200| [39403c6c1baf9035d376bf4d7d5b196a6006ce27] | committer: Martin Storsjö
oggparsetheora: fix comment header parsing
Pass the correct header size to ff_vorbis_comment()
Signed-off-by: Martin Storsjö <martin at martin.st>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=39403c6c1baf9035d376bf4d7d5b196a6006ce27
---
libavformat/oggparsetheora.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/oggparsetheora.c b/libavformat/oggparsetheora.c
index dfb73c9..ed31d53 100644
--- a/libavformat/oggparsetheora.c
+++ b/libavformat/oggparsetheora.c
@@ -114,7 +114,7 @@ theora_header (AVFormatContext * s, int idx)
}
break;
case 0x81:
- ff_vorbis_comment(s, &st->metadata, os->buf + os->pstart + 7, os->psize - 8);
+ ff_vorbis_comment(s, &st->metadata, os->buf + os->pstart + 7, os->psize - 7);
case 0x82:
if (!thp->version)
return -1;
More information about the ffmpeg-cvslog
mailing list