Skip to content
Snippets Groups Projects
Commit ddc01357 authored by François Cartegnie's avatar François Cartegnie :fingers_crossed:
Browse files

demux: heif: fix broken mime case handling

parent c6948832
No related branches found
No related tags found
No related merge requests found
......@@ -279,10 +279,15 @@ static int DemuxHEIF( demux_t *p_demux )
if( psz_mime )
{
if( !strcasecmp( "image/jpeg", psz_mime ) )
{
es_format_Init( &fmt, VIDEO_ES, VLC_CODEC_JPEG );
break;
}
else if( !strcasecmp( "image/avif", psz_mime ) )
{
es_format_Init( &fmt, VIDEO_ES, VLC_CODEC_AV1 );
break;
break;
}
}
return VLC_DEMUXER_SUCCESS; /* Unsupported picture, goto next */
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment