mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).
Originally committed as revision 9759 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
+1
-1
@@ -177,7 +177,7 @@ static int wv_read_packet(AVFormatContext *s,
|
||||
}
|
||||
|
||||
if(av_new_packet(pkt, wc->blksize + WV_EXTRA_SIZE) < 0)
|
||||
return AVERROR_NOMEM;
|
||||
return AVERROR(ENOMEM);
|
||||
memcpy(pkt->data, wc->extra, WV_EXTRA_SIZE);
|
||||
ret = get_buffer(&s->pb, pkt->data + WV_EXTRA_SIZE, wc->blksize);
|
||||
if(ret != wc->blksize){
|
||||
|
||||
Reference in New Issue
Block a user