Changeset 9cb6a39 in ffmpeg


Ignore:
Timestamp:
Dec 17, 2011, 9:43:34 PM (13 years ago)
Author:
Nicolas George <nicolas.george@normalesup.org>
Branches:
master
Children:
e09ffa45
Parents:
56bf2c2a
Message:

sbgdec: replace EOVERFLOW with ENOMEM.

This should fix track issue #781, regarding compilation with
i686-w64-mingw32-gcc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libavformat/sbgdec.c

    r56bf2c2a r9cb6a39  
    13321332                      inter->inter[i].type == WS_NOISE ? 32 : 0;
    13331333        if (edata_size < 0)
    1334             return AVERROR(EOVERFLOW);
     1334            return AVERROR(ENOMEM);
    13351335    }
    13361336    edata = av_malloc(edata_size);
Note: See TracChangeset for help on using the changeset viewer.