mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avcodec: remove "get_buffer() failed" message
It is already provided by ff_get_buffer(). Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
0c9490609d
commit
3e99b377fc
@ -761,10 +761,8 @@ static int dss_sp_decode_frame(AVCodecContext *avctx, void *data,
|
||||
}
|
||||
|
||||
frame->nb_samples = DSS_SP_SAMPLE_COUNT;
|
||||
if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) {
|
||||
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed.\n");
|
||||
if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
|
||||
return ret;
|
||||
}
|
||||
|
||||
out = (int16_t *)frame->data[0];
|
||||
|
||||
|
@ -281,10 +281,8 @@ static int decode_frame(AVCodecContext *avctx,
|
||||
avpriv_request_sample(avctx, "Pack type %d", pack_type);
|
||||
return AVERROR_PATCHWELCOME;
|
||||
}
|
||||
if ((ret = ff_get_buffer(avctx, p, 0)) < 0) {
|
||||
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
|
||||
if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* jump to data */
|
||||
bytestream2_skip(&gbc, 30);
|
||||
|
Loading…
x
Reference in New Issue
Block a user