1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

lavc/srtenc: return more meaninful error codes

Signed-off-by: Philip Langdale <philipl@overt.org>
This commit is contained in:
John Stebbins 2020-04-10 12:34:30 -06:00 committed by Philip Langdale
parent 1d544e410e
commit 9ac715a367

View File

@ -241,7 +241,7 @@ static int encode_frame(AVCodecContext *avctx,
if (sub->rects[i]->type != SUBTITLE_ASS) {
av_log(avctx, AV_LOG_ERROR, "Only SUBTITLE_ASS type supported.\n");
return AVERROR(ENOSYS);
return AVERROR(EINVAL);
}
#if FF_API_ASS_TIMING
@ -276,7 +276,7 @@ static int encode_frame(AVCodecContext *avctx,
if (s->buffer.len > bufsize) {
av_log(avctx, AV_LOG_ERROR, "Buffer too small for ASS event.\n");
return -1;
return AVERROR_BUFFER_TOO_SMALL;
}
memcpy(buf, s->buffer.str, s->buffer.len);