Browse Source

lavc/webvttenc: return more meaningful error codes

Signed-off-by: Philip Langdale <philipl@overt.org>
tags/n4.3
John Stebbins Philip Langdale 5 years ago
parent
commit
5fcf620eee
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/webvttenc.c

+ 2
- 2
libavcodec/webvttenc.c View File

@@ -168,7 +168,7 @@ static int webvtt_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
@@ -200,7 +200,7 @@ static int webvtt_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);



Loading…
Cancel
Save