[FFmpeg-cvslog] brstm: fix missing closing brace

Andreas Cadhalpun git at videolan.org
Thu Jan 28 02:27:24 CET 2016


ffmpeg | branch: release/2.5 | Andreas Cadhalpun <Andreas.Cadhalpun at googlemail.com> | Mon Jan  4 13:44:16 2016 +0100| [f2fd5b9eb2677eddfe6c9be6b2235390476cfce6] | committer: Andreas Cadhalpun

brstm: fix missing closing brace

Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun at googlemail.com>
(cherry picked from commit 1cb2331eca0dbde1bc63bc715a0e98771dda8b80)
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun at googlemail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f2fd5b9eb2677eddfe6c9be6b2235390476cfce6
---

 libavformat/brstm.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/libavformat/brstm.c b/libavformat/brstm.c
index aba3770..6afae73 100644
--- a/libavformat/brstm.c
+++ b/libavformat/brstm.c
@@ -263,6 +263,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