mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 18:35:35 +00:00
audioconvert: cleanup helper code
make_lossless_changes() returns the same structure that we're passing (probably to enable chaining). Instead of reusing s and making it point to s2 as well, keep using s2. Drop the assignment which in the 2nd case is a dead one anyway.
This commit is contained in:
parent
ea1c48ab84
commit
f514be993c
1 changed files with 3 additions and 3 deletions
|
@ -503,15 +503,15 @@ append_with_other_format (GstCaps * caps, GstStructure * s, gboolean isfloat)
|
|||
if (isfloat) {
|
||||
s2 = gst_structure_copy (s);
|
||||
gst_structure_set_name (s2, "audio/x-raw-int");
|
||||
s = make_lossless_changes (s2, FALSE);
|
||||
make_lossless_changes (s2, FALSE);
|
||||
/* If 64 bit float was allowed; remove width 64: we don't support it for
|
||||
* integer*/
|
||||
strip_width_64 (s);
|
||||
strip_width_64 (s2);
|
||||
gst_caps_append_structure (caps, s2);
|
||||
} else {
|
||||
s2 = gst_structure_copy (s);
|
||||
gst_structure_set_name (s2, "audio/x-raw-float");
|
||||
s = make_lossless_changes (s2, TRUE);
|
||||
make_lossless_changes (s2, TRUE);
|
||||
gst_caps_append_structure (caps, s2);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue