diff options
author | John Stebbins <jstebbins@jetheaddev.com> | 2020-04-10 12:34:30 -0600 |
---|---|---|
committer | Philip Langdale <philipl@overt.org> | 2020-04-10 15:58:04 -0700 |
commit | 9ac715a36783af7d52e23463bcb8ce2c502ca6e7 (patch) | |
tree | 35bf8481821e5f31af91afa444735d4ee9328f3e | |
parent | 1d544e410e121d6ab675d29d0d24dcc6dc1097a6 (diff) | |
download | ffmpeg-9ac715a36783af7d52e23463bcb8ce2c502ca6e7.tar.gz |
lavc/srtenc: return more meaninful error codes
Signed-off-by: Philip Langdale <philipl@overt.org>
-rw-r--r-- | libavcodec/srtenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/srtenc.c b/libavcodec/srtenc.c index 34f0f0d5e6..655b65679e 100644 --- a/libavcodec/srtenc.c +++ b/libavcodec/srtenc.c @@ -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); |