1.1 --- a/gmyth-stream/gmemcoder/src/gmencoder.c Tue May 01 21:05:29 2007 +0100
1.2 +++ b/gmyth-stream/gmemcoder/src/gmencoder.c Tue May 01 21:57:44 2007 +0100
1.3 @@ -650,8 +650,8 @@
1.4
1.5 pipe = gst_pipeline_new ("pipe");
1.6
1.7 - ap = gst_element_factory_make ("multipartmux", "ap");
1.8 - vp = gst_element_factory_make ("multipartmux", "vp");
1.9 + ap = gst_element_factory_make ("concatmux", "ap");
1.10 + vp = gst_element_factory_make ("concatmux", "vp");
1.11
1.12 mux = gst_element_factory_make ((mux_name ? mux_name : "ffmux_mpeg"), "mux");
1.13 if (mux == NULL)
1.14 @@ -677,12 +677,12 @@
1.15 gst_bin_add_many (GST_BIN (pipe), ap, abin, vp, vbin, mux, sink, NULL);
1.16
1.17 if (gst_element_link (ap, abin) == FALSE) {
1.18 - g_warning ("Fail to link multipart and abin");
1.19 + g_warning ("Fail to link concat and abin");
1.20 goto error;
1.21 }
1.22
1.23 if (gst_element_link (vp, vbin) == FALSE) {
1.24 - g_warning ("Fail to link multipart and vbin");
1.25 + g_warning ("Fail to link concat and vbin");
1.26 }
1.27
1.28 //Link bins with mux