avcodec/webvttenc: do not use EOVERFLOW.

According to doc/errno.txt EOVERFLOW is not available everywhere. The
use of -1 is consistent with avcodec/srtenc.c.
pull/72/head
Clément Bœsch 11 years ago
parent cf7ff0146c
commit 657c603263
  1. 2
      libavcodec/webvttenc.c

@ -52,7 +52,7 @@ static void webvtt_print(WebVTTContext *s, const char *str, ...)
static int webvtt_stack_push(WebVTTContext *s, const char c)
{
if (s->stack_ptr >= WEBVTT_STACK_SIZE)
return AVERROR(EOVERFLOW);
return -1;
s->stack[s->stack_ptr++] = c;
return 0;
}

Loading…
Cancel
Save