mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 18:48:44 +00:00
ext/vorbis/vorbisdec.c: Attempt to make obfuscated code clearer.
Original commit message from CVS: * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet): Attempt to make obfuscated code clearer.
This commit is contained in:
parent
4d7ebf29d9
commit
d9c2015fe1
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-10-23 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
|
||||
Attempt to make obfuscated code clearer.
|
||||
|
||||
2008-10-23 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||
|
||||
* docs/libs/gst-plugins-base-libs-sections.txt:
|
||||
|
|
|
@ -628,6 +628,7 @@ vorbis_handle_identification_packet (GstVorbisDec * vd)
|
|||
GST_AUDIO_CHANNEL_POSITION_REAR_CENTER,
|
||||
};
|
||||
pos = pos7;
|
||||
/* fallthrough */
|
||||
}
|
||||
case 8:{
|
||||
static const GstAudioChannelPosition pos8[] = {
|
||||
|
@ -642,6 +643,7 @@ vorbis_handle_identification_packet (GstVorbisDec * vd)
|
|||
};
|
||||
|
||||
pos = pos8;
|
||||
/* fallthrough */
|
||||
}
|
||||
default:{
|
||||
gint i;
|
||||
|
|
Loading…
Reference in a new issue