avmux: Force DV audio input format to 48kHz, 2 channels
authorTim 'mithro' Ansell <mithro@mithis.com>
Tue, 21 Jan 2014 11:58:42 +0000 (22:58 +1100)
committerSebastian Dröge <sebastian@centricular.com>
Tue, 21 Jan 2014 12:22:40 +0000 (13:22 +0100)
libavformat only supports muxing 16bit, 48kHz stereo into DV containers.

Fixes https://bugzilla.gnome.org/show_bug.cgi?id=722672

ext/libav/gstavmux.c

index 6538e84..ac033fe 100644 (file)
@@ -254,6 +254,10 @@ gst_ffmpegmux_base_init (gpointer g_class)
     const gint rates[] = { 44100, 22050, 11025 };
 
     gst_ffmpeg_mux_simple_caps_set_int_list (audiosinkcaps, "rate", 3, rates);
+  } else if (strcmp (in_plugin->name, "dv") == 0) {
+    gst_caps_set_simple (audiosinkcaps,
+        "rate", G_TYPE_INT, 48000, "channels", G_TYPE_INT, 2, NULL);
+
   } else if (strcmp (in_plugin->name, "gif") == 0) {
     if (videosinkcaps)
       gst_caps_unref (videosinkcaps);