isomp4: also allow muxing different h264/5 profiles/levels/etc
authorMatthew Waters <matthew@centricular.com>
Mon, 18 Jan 2021 05:06:27 +0000 (16:06 +1100)
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Mon, 13 Sep 2021 09:42:15 +0000 (09:42 +0000)
All of that is advertised through the codec_data itself so can change
just fine within isomp4.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/1071>

gst/isomp4/gstqtmux.c

index 6d54fcf..999621a 100644 (file)
@@ -5731,6 +5731,21 @@ check_field (GQuark field_id, const GValue * value, gpointer user_data)
       return TRUE;
     } else if (g_strcmp0 (g_quark_to_string (field_id), "profile") == 0) {
       return TRUE;
+    } else if (g_strcmp0 (g_quark_to_string (field_id), "chroma-format") == 0) {
+      return TRUE;
+    } else if (g_strcmp0 (g_quark_to_string (field_id), "bit-depth-luma") == 0) {
+      return TRUE;
+    } else if (g_strcmp0 (g_quark_to_string (field_id),
+            "bit-depth-chroma") == 0) {
+      return TRUE;
+    } else if (g_strcmp0 (g_quark_to_string (field_id), "colorimetry") == 0) {
+      return TRUE;
+    } else if (g_strcmp0 (g_quark_to_string (field_id), "width") == 0) {
+      /* TODO: this may require a separate track but gst, vlc, ffmpeg and
+       * browsers work with this so... */
+      return TRUE;
+    } else if (g_strcmp0 (g_quark_to_string (field_id), "height") == 0) {
+      return TRUE;
     }
   }