mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
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:
parent
ed0c1564ca
commit
13c76e3bc3
2 changed files with 2 additions and 2 deletions
|
@ -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";
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue