Commit 34f942c6 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/assenc: Return more specific error codes for ass_encode_frame()

Reviewed-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 6747a633
...@@ -57,7 +57,7 @@ static int ass_encode_frame(AVCodecContext *avctx, ...@@ -57,7 +57,7 @@ static int ass_encode_frame(AVCodecContext *avctx,
if (sub->rects[i]->type != SUBTITLE_ASS) { if (sub->rects[i]->type != SUBTITLE_ASS) {
av_log(avctx, AV_LOG_ERROR, "Only SUBTITLE_ASS type supported.\n"); av_log(avctx, AV_LOG_ERROR, "Only SUBTITLE_ASS type supported.\n");
return -1; return AVERROR(EINVAL);
} }
#if FF_API_ASS_TIMING #if FF_API_ASS_TIMING
...@@ -93,7 +93,7 @@ static int ass_encode_frame(AVCodecContext *avctx, ...@@ -93,7 +93,7 @@ static int ass_encode_frame(AVCodecContext *avctx,
if (len > bufsize-total_len-1) { if (len > bufsize-total_len-1) {
av_log(avctx, AV_LOG_ERROR, "Buffer too small for ASS event.\n"); av_log(avctx, AV_LOG_ERROR, "Buffer too small for ASS event.\n");
return -1; return AVERROR(EINVAL);
} }
total_len += len; total_len += len;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment