mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 13:10:37 +00:00
lavc/utils: check return value of avcodec_fill_audio_frame() for < 0
Assume that the value is always negative in case of error, as stated in the docs, do not assume that the value cannot be != 0 in case of success.
This commit is contained in:
parent
51e9f58e1c
commit
e55c3857d2
@ -418,7 +418,7 @@ static int audio_get_buffer(AVCodecContext *avctx, AVFrame *frame)
|
||||
}
|
||||
if ((ret = avcodec_fill_audio_frame(frame, avctx->channels,
|
||||
avctx->sample_fmt, buf->data[0],
|
||||
buf->audio_data_size, 0)))
|
||||
buf->audio_data_size, 0)) < 0)
|
||||
return ret;
|
||||
|
||||
if (frame->extended_data == frame->data)
|
||||
@ -1383,7 +1383,7 @@ int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx,
|
||||
if ((ret = avcodec_fill_audio_frame(frame, avctx->channels,
|
||||
avctx->sample_fmt,
|
||||
(const uint8_t *)samples,
|
||||
samples_size, 1)))
|
||||
samples_size, 1)) < 0)
|
||||
return ret;
|
||||
|
||||
/* fabricate frame pts from sample count.
|
||||
|
Loading…
Reference in New Issue
Block a user