[FFmpeg-cvslog] oggparsetheora: fix comment header parsing
Giorgio Vazzana
git at videolan.org
Fri Oct 5 18:11:38 CEST 2012
ffmpeg | branch: master | Giorgio Vazzana <mywing81 at gmail.com> | Fri Oct 5 13:37:20 2012 +0200| [db4bb4c983ad143e6a70c6b844285b3ce343ca27] | committer: Michael Niedermayer
oggparsetheora: fix comment header parsing
Pass the correct header size to ff_vorbis_comment()
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=db4bb4c983ad143e6a70c6b844285b3ce343ca27
---
libavformat/oggparsetheora.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/oggparsetheora.c b/libavformat/oggparsetheora.c
index c8aaa64..6877d1e 100644
--- a/libavformat/oggparsetheora.c
+++ b/libavformat/oggparsetheora.c
@@ -113,7 +113,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