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:
@@ -56,7 +56,7 @@ static int ape_tag_read_field(AVFormatContext *s)
|
||||
return -1;
|
||||
value = av_malloc(size+1);
|
||||
if (!value)
|
||||
return AVERROR_NOMEM;
|
||||
return AVERROR(ENOMEM);
|
||||
get_buffer(pb, value, size);
|
||||
value[size] = 0;
|
||||
av_metadata_set2(&s->metadata, key, value, AV_METADATA_DONT_STRDUP_VAL);
|
||||
|
||||
Reference in New Issue
Block a user