summaryrefslogtreecommitdiff
path: root/libavcodec/opusdec.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2015-02-10 14:20:32 +0000
committerPaul B Mahol <onemda@gmail.com>2015-02-10 14:20:32 +0000
commit392d975efe9424fe7b1ab3ae308f93f8a51b6c4e (patch)
treeab9b6192d2508d59a1041dad5ef3ef3d9234dffd /libavcodec/opusdec.c
parent9b22e460adb2e8d6f89916c129240042275404cc (diff)
avcodec: fix clobbered ff_get_buffer()
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/opusdec.c')
-rw-r--r--libavcodec/opusdec.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/opusdec.c b/libavcodec/opusdec.c
index 759eaa529c..84fa0ff988 100644
--- a/libavcodec/opusdec.c
+++ b/libavcodec/opusdec.c
@@ -474,10 +474,8 @@ static int opus_decode_packet(AVCodecContext *avctx, void *data,
/* setup the data buffers */
ret = ff_get_buffer(avctx, frame, 0);
- if (ret < 0) {
- av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
+ if (ret < 0)
return ret;
- }
frame->nb_samples = 0;
for (i = 0; i < avctx->channels; i++) {