From 520221c47a64e46c23cf120b9e8a497b6af157da Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Tue, 21 Jan 2014 22:58:42 +1100 Subject: avmux: Force DV audio input format to 48kHz, 2 channels libavformat only supports muxing 16bit, 48kHz stereo into DV containers. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=722672 --- ext/libav/gstavmux.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ext/libav/gstavmux.c b/ext/libav/gstavmux.c index 6538e84..ac033fe 100644 --- a/ext/libav/gstavmux.c +++ b/ext/libav/gstavmux.c @@ -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); -- cgit v1.2.3