[FFmpeg-cvslog] avcodec/vorbisdec: add missing comma
James Almer
git at videolan.org
Fri May 5 03:46:03 EEST 2017
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Thu May 4 21:44:58 2017 -0300| [8acd73e3482c833d8350c87dba7087d057a33859] | committer: James Almer
avcodec/vorbisdec: add missing comma
Should fix compilation failures after 191b2d4fc96fa87975a8eb5d87db04516b8a04c3.
Found-by: philipl
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8acd73e3482c833d8350c87dba7087d057a33859
---
libavcodec/vorbisdec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/vorbisdec.c b/libavcodec/vorbisdec.c
index 9cff6c3e13..2a4f482031 100644
--- a/libavcodec/vorbisdec.c
+++ b/libavcodec/vorbisdec.c
@@ -731,7 +731,7 @@ static int vorbis_parse_setup_hdr_residues(vorbis_context *vc)
if (!res_setup->classifs)
return AVERROR(ENOMEM);
- ff_dlog(NULL, " begin %"PRIu32" end %"PRIu32" part.size %u classif.s %"PRIu8" classbook %"PRIu8"\n"
+ ff_dlog(NULL, " begin %"PRIu32" end %"PRIu32" part.size %u classif.s %"PRIu8" classbook %"PRIu8"\n",
res_setup->begin, res_setup->end, res_setup->partition_size,
res_setup->classifications, res_setup->classbook);
More information about the ffmpeg-cvslog
mailing list