1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

avformat/imfdec: Use proper logcontext

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2022-01-17 14:52:10 +01:00
parent e3c2a97a6d
commit b7a543707f

View File

@ -200,7 +200,7 @@ static int parse_imf_asset_map_from_xml_dom(AVFormatContext *s,
elem_count + asset_map->asset_count, elem_count + asset_map->asset_count,
sizeof(IMFAssetLocator)); sizeof(IMFAssetLocator));
if (!tmp) { if (!tmp) {
av_log(NULL, AV_LOG_ERROR, "Cannot allocate IMF asset locators\n"); av_log(s, AV_LOG_ERROR, "Cannot allocate IMF asset locators\n");
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
} }
asset_map->assets = tmp; asset_map->assets = tmp;