mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-12-24 11:52:06 +08:00
Replace all remaining occurrences of AVERROR_NOMEM with
AVERROR(ENOMEM). AVERROR_NOMEM is deprecated and will be dropped at the next libavutil major bump. Originally committed as revision 22791 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -352,7 +352,7 @@ static av_cold int flac_encode_init(AVCodecContext *avctx)
|
||||
/* initialize MD5 context */
|
||||
s->md5ctx = av_malloc(av_md5_size);
|
||||
if(!s->md5ctx)
|
||||
return AVERROR_NOMEM;
|
||||
return AVERROR(ENOMEM);
|
||||
av_md5_init(s->md5ctx);
|
||||
|
||||
streaminfo = av_malloc(FLAC_STREAMINFO_SIZE);
|
||||
|
||||
Reference in New Issue
Block a user