Commit 1d544e41 authored by John Stebbins's avatar John Stebbins Committed by Philip Langdale

lavc/movtextenc: return more meaningful error codes

Signed-off-by: 's avatarPhilip Langdale <philipl@overt.org>
parent 9a0817ba
...@@ -693,7 +693,7 @@ static int mov_text_encode_frame(AVCodecContext *avctx, unsigned char *buf, ...@@ -693,7 +693,7 @@ static int mov_text_encode_frame(AVCodecContext *avctx, unsigned char *buf,
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 AVERROR(ENOSYS); return AVERROR(EINVAL);
} }
#if FF_API_ASS_TIMING #if FF_API_ASS_TIMING
...@@ -736,7 +736,7 @@ static int mov_text_encode_frame(AVCodecContext *avctx, unsigned char *buf, ...@@ -736,7 +736,7 @@ static int mov_text_encode_frame(AVCodecContext *avctx, unsigned char *buf,
if (s->buffer.len > bufsize - 3) { if (s->buffer.len > bufsize - 3) {
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");
length = AVERROR(EINVAL); length = AVERROR_BUFFER_TOO_SMALL;
goto exit; goto exit;
} }
......
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