Rename aac's stream-format 'none' to 'raw'
authorThiago Santos <thiago.sousa.santos@collabora.co.uk>
Mon, 11 Jan 2010 16:13:41 +0000 (13:13 -0300)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Tue, 12 Apr 2011 19:32:15 +0000 (20:32 +0100)
Renames aac's stream-format from previous commits from none to
raw

gst/quicktime/gstqtmux.c
gst/quicktime/gstqtmuxmap.c

index ba0978e..2756e0d 100644 (file)
@@ -1792,14 +1792,14 @@ gst_qt_mux_audio_sink_set_caps (GstPad * pad, GstCaps * caps)
         /* check stream-format */
         stream_format = gst_structure_get_string (structure, "stream-format");
         if (stream_format) {
-          if (strcmp (stream_format, "none") != 0) {
+          if (strcmp (stream_format, "raw") != 0) {
             GST_WARNING_OBJECT (qtmux, "Unsupported AAC stream-format %s, "
-                "please use 'none'", stream_format);
+                "please use 'raw'", stream_format);
             goto refuse_caps;
           }
         } else {
           GST_WARNING_OBJECT (qtmux, "No stream-format present in caps, "
-              "assuming 'none'");
+              "assuming 'raw'");
         }
 
         if (!codec_data || GST_BUFFER_SIZE (codec_data) < 2)
index c402198..f690faa 100644 (file)
 #define AAC_CAPS \
   "audio/mpeg, " \
   "mpegversion = (int) 4, " \
-  "stream-format = (string) none, " \
+  "stream-format = (string) raw, " \
   COMMON_AUDIO_CAPS (8, MAX)
 
 #define AMR_CAPS \