Rename aac's stream-format 'none' to 'raw'

Renames aac's stream-format from previous commits from none to
raw
This commit is contained in:
Thiago Santos 2010-01-11 13:13:41 -03:00 committed by Tim-Philipp Müller
parent ed0c1564ca
commit 13c76e3bc3
2 changed files with 2 additions and 2 deletions

View file

@ -223,7 +223,7 @@ gst_aacparse_set_src_caps (GstAacParse * aacparse, GstCaps * sink_caps)
switch (aacparse->header_type) {
case DSPAAC_HEADER_NONE:
stream_format = "none";
stream_format = "raw";
break;
case DSPAAC_HEADER_ADTS:
stream_format = "adts";

View file

@ -473,7 +473,7 @@ GST_START_TEST (test_parse_handle_codec_data)
fail_unless (gst_structure_has_field (s, "codec_data"));
fail_unless (gst_structure_has_field (s, "stream-format"));
stream_format = gst_structure_get_string (s, "stream-format");
fail_unless (strcmp (stream_format, "none") == 0);
fail_unless (strcmp (stream_format, "raw") == 0);
gst_caps_unref (sinkcaps);