[FFmpeg-cvslog] brstm: fix missing closing brace
Andreas Cadhalpun
git at videolan.org
Mon Jan 4 13:49:27 CET 2016
ffmpeg | branch: master | Andreas Cadhalpun <Andreas.Cadhalpun at googlemail.com> | Mon Jan 4 13:44:16 2016 +0100| [1cb2331eca0dbde1bc63bc715a0e98771dda8b80] | committer: Andreas Cadhalpun
brstm: fix missing closing brace
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun at googlemail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1cb2331eca0dbde1bc63bc715a0e98771dda8b80
---
libavformat/brstm.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libavformat/brstm.c b/libavformat/brstm.c
index e9d64e4..aae2575 100644
--- a/libavformat/brstm.c
+++ b/libavformat/brstm.c
@@ -392,6 +392,7 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt)
if (!b->adpc) {
av_log(s, AV_LOG_ERROR, "adpcm_thp requires ADPC chunk, but none was found.\n");
return AVERROR_INVALIDDATA;
+ }
if (!b->table) {
b->table = av_mallocz(32 * codec->channels);
if (!b->table)
More information about the ffmpeg-cvslog
mailing list