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:
@@ -67,7 +67,7 @@ static int flac_read_header(AVFormatContext *s,
|
||||
case FLAC_METADATA_TYPE_VORBIS_COMMENT:
|
||||
buffer = av_mallocz(metadata_size + FF_INPUT_BUFFER_PADDING_SIZE);
|
||||
if (!buffer) {
|
||||
return AVERROR_NOMEM;
|
||||
return AVERROR(ENOMEM);
|
||||
}
|
||||
if (get_buffer(s->pb, buffer, metadata_size) != metadata_size) {
|
||||
av_freep(&buffer);
|
||||
|
||||
Reference in New Issue
Block a user