Mercurial > libavformat.hg
diff thp.c @ 2273:7eb456c4ed8a libavformat
Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).
| author | takis |
|---|---|
| date | Thu, 19 Jul 2007 15:21:30 +0000 |
| parents | cabaa5557164 |
| children | b21c2af60bc9 |
line wrap: on
line diff
--- a/thp.c Thu Jul 19 14:48:13 2007 +0000 +++ b/thp.c Thu Jul 19 15:21:30 2007 +0000 @@ -96,7 +96,7 @@ /* Video component. */ st = av_new_stream(s, 0); if (!st) - return AVERROR_NOMEM; + return AVERROR(ENOMEM); /* The denominator and numerator are switched because 1/fps is required. */ @@ -119,7 +119,7 @@ /* Audio component. */ st = av_new_stream(s, 0); if (!st) - return AVERROR_NOMEM; + return AVERROR(ENOMEM); st->codec->codec_type = CODEC_TYPE_AUDIO; st->codec->codec_id = CODEC_ID_ADPCM_THP;
