You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/libxavs: Improve returned error codes
Reviewed-by: James Almer <jamrial@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@@ -112,7 +112,7 @@ static int encode_nals(AVCodecContext *ctx, AVPacket *pkt,
|
|||||||
int size = p_end - p;
|
int size = p_end - p;
|
||||||
s = xavs_nal_encode(p, &size, 1, nals + i);
|
s = xavs_nal_encode(p, &size, 1, nals + i);
|
||||||
if (s < 0)
|
if (s < 0)
|
||||||
return -1;
|
return AVERROR_EXTERNAL;
|
||||||
if (s != 3U + nals[i].i_payload)
|
if (s != 3U + nals[i].i_payload)
|
||||||
return AVERROR_EXTERNAL;
|
return AVERROR_EXTERNAL;
|
||||||
p += s;
|
p += s;
|
||||||
@@ -146,12 +146,12 @@ static int XAVS_frame(AVCodecContext *avctx, AVPacket *pkt,
|
|||||||
|
|
||||||
if (xavs_encoder_encode(x4->enc, &nal, &nnal,
|
if (xavs_encoder_encode(x4->enc, &nal, &nnal,
|
||||||
frame? &x4->pic: NULL, &pic_out) < 0)
|
frame? &x4->pic: NULL, &pic_out) < 0)
|
||||||
return -1;
|
return AVERROR_EXTERNAL;
|
||||||
|
|
||||||
ret = encode_nals(avctx, pkt, nal, nnal);
|
ret = encode_nals(avctx, pkt, nal, nnal);
|
||||||
|
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return -1;
|
return ret;
|
||||||
|
|
||||||
if (!ret) {
|
if (!ret) {
|
||||||
if (!frame && !(x4->end_of_stream)) {
|
if (!frame && !(x4->end_of_stream)) {
|
||||||
@@ -345,7 +345,7 @@ static av_cold int XAVS_init(AVCodecContext *avctx)
|
|||||||
|
|
||||||
x4->enc = xavs_encoder_open(&x4->params);
|
x4->enc = xavs_encoder_open(&x4->params);
|
||||||
if (!x4->enc)
|
if (!x4->enc)
|
||||||
return -1;
|
return AVERROR_EXTERNAL;
|
||||||
|
|
||||||
if (!(x4->pts_buffer = av_mallocz_array((avctx->max_b_frames+1), sizeof(*x4->pts_buffer))))
|
if (!(x4->pts_buffer = av_mallocz_array((avctx->max_b_frames+1), sizeof(*x4->pts_buffer))))
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
|
Reference in New Issue
Block a user