# HG changeset patch # User renatofilho # Date 1178053064 -3600 # Node ID 24c3dd0bc57e4347748fb55e7c6b7d0ce1a57fc4 # Parent 289e2d11d16c64e78dce93c28e45202af56bf192 [svn r620] changed the multipart name to concat diff -r 289e2d11d16c -r 24c3dd0bc57e gmyth-stream/gmemcoder/src/gmencoder.c --- a/gmyth-stream/gmemcoder/src/gmencoder.c Tue May 01 21:05:29 2007 +0100 +++ b/gmyth-stream/gmemcoder/src/gmencoder.c Tue May 01 21:57:44 2007 +0100 @@ -650,8 +650,8 @@ pipe = gst_pipeline_new ("pipe"); - ap = gst_element_factory_make ("multipartmux", "ap"); - vp = gst_element_factory_make ("multipartmux", "vp"); + ap = gst_element_factory_make ("concatmux", "ap"); + vp = gst_element_factory_make ("concatmux", "vp"); mux = gst_element_factory_make ((mux_name ? mux_name : "ffmux_mpeg"), "mux"); if (mux == NULL) @@ -677,12 +677,12 @@ gst_bin_add_many (GST_BIN (pipe), ap, abin, vp, vbin, mux, sink, NULL); if (gst_element_link (ap, abin) == FALSE) { - g_warning ("Fail to link multipart and abin"); + g_warning ("Fail to link concat and abin"); goto error; } if (gst_element_link (vp, vbin) == FALSE) { - g_warning ("Fail to link multipart and vbin"); + g_warning ("Fail to link concat and vbin"); } //Link bins with mux