Commit 5e9dd354 authored by Francois Cartegnie's avatar Francois Cartegnie

demux: mp4: bind jpeg to mjpeg (fix #14846)

parent 3cee1194
......@@ -273,6 +273,10 @@ int SetupVideoES( demux_t *p_demux, mp4_track_t *p_track, MP4_Box_t *p_sample )
break;
}
case VLC_FOURCC('j', 'p', 'e', 'g'):
p_track->fmt.i_codec = VLC_CODEC_MJPG;
break;
case VLC_CODEC_FFV1:
{
MP4_Box_t *p_binary = MP4_BoxGet( p_sample, "glbl" );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment