~ubuntu-branches/ubuntu/raring/brasero/raring-proposed

« back to all changes in this revision

Viewing changes to libbrasero-utils/brasero-metadata.c

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-01-24 23:07:10 UTC
  • Revision ID: package-import@ubuntu.com-20130124230710-ik50o2gfst5s6qa1
Tags: 3.6.1-0ubuntu2
* 99_fix-mp3-projects.patch:
  - Bugzilla patch to fix "not suitable for audio or video media"
    error when trying to create a mp3 audio project (LP: #1072151)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1200
1200
        }
1201
1201
        gst_bin_add (GST_BIN (priv->pipeline_mp3), source);
1202
1202
 
1203
 
        parse = gst_element_factory_make ("mp3parse", NULL);
 
1203
        parse = gst_element_factory_make ("mpegaudioparse", NULL);
1204
1204
        if (!parse) {
1205
1205
                priv->error = g_error_new (BRASERO_UTILS_ERROR,
1206
1206
                                           BRASERO_UTILS_ERROR_GENERAL,
1207
1207
                                           _("%s element could not be created"),
1208
 
                                           "\"mp3parse\"");
 
1208
                                           "\"mpegaudioparse\"");
1209
1209
 
1210
1210
                g_object_unref (priv->pipeline_mp3);
1211
1211
                priv->pipeline_mp3 = NULL;