From 9cb6a39c461abc8d3dd79dc5a59243038664fb65 Mon Sep 17 00:00:00 2001 From: Nicolas George Date: Sat, 17 Dec 2011 22:43:34 +0100 Subject: sbgdec: replace EOVERFLOW with ENOMEM. This should fix track issue #781, regarding compilation with i686-w64-mingw32-gcc. --- libavformat/sbgdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/sbgdec.c') diff --git a/libavformat/sbgdec.c b/libavformat/sbgdec.c index 2ec8702..da4bb6c 100644 --- a/libavformat/sbgdec.c +++ b/libavformat/sbgdec.c @@ -1331,7 +1331,7 @@ static int encode_intervals(struct sbg_script *s, AVCodecContext *avc, edata_size += inter->inter[i].type == WS_SINE ? 44 : inter->inter[i].type == WS_NOISE ? 32 : 0; if (edata_size < 0) - return AVERROR(EOVERFLOW); + return AVERROR(ENOMEM); } edata = av_malloc(edata_size); if (!edata) -- cgit v1.1