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.
This commit is contained in:
Clément Bœsch 2014-05-25 10:27:33 +02:00
parent cf7ff0146c
commit 657c603263
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}