mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
typefind: isml is iso-fragmented video/quicktime
Add isml typefinding to the video/quicktime function
This commit is contained in:
parent
a53f0f382e
commit
a4cfe8c43c
1 changed files with 6 additions and 0 deletions
|
@ -2796,6 +2796,12 @@ qt_type_find (GstTypeFind * tf, gpointer unused)
|
|||
break;
|
||||
}
|
||||
|
||||
if (STRNCMP (&data[4], "ftypisml", 8) == 0) {
|
||||
tip = GST_TYPE_FIND_MAXIMUM;
|
||||
variant = "iso-fragmented";
|
||||
break;
|
||||
}
|
||||
|
||||
/* box/atom types that are in common with ISO base media file format */
|
||||
if (STRNCMP (&data[4], "moov", 4) == 0 ||
|
||||
STRNCMP (&data[4], "mdat", 4) == 0 ||
|
||||
|
|
Loading…
Reference in a new issue