mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-18 21:07:01 +00:00
brstm: fix missing closing brace
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
(cherry picked from commit 1cb2331eca
)
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
This commit is contained in:
parent
cdedd71a7e
commit
f2fd5b9eb2
@ -263,6 +263,7 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt)
|
|||||||
if (!b->adpc) {
|
if (!b->adpc) {
|
||||||
av_log(s, AV_LOG_ERROR, "adpcm_thp requires ADPC chunk, but none was found.\n");
|
av_log(s, AV_LOG_ERROR, "adpcm_thp requires ADPC chunk, but none was found.\n");
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
|
}
|
||||||
if (!b->table) {
|
if (!b->table) {
|
||||||
b->table = av_mallocz(32 * codec->channels);
|
b->table = av_mallocz(32 * codec->channels);
|
||||||
if (!b->table)
|
if (!b->table)
|
||||||
|
Loading…
Reference in New Issue
Block a user