mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
ext/alsa/gstalsa.c: Fix typo and compilation on big endian systems.
Original commit message from CVS: * ext/alsa/gstalsa.c: Fix typo and compilation on big endian systems.
This commit is contained in:
parent
bed6719df7
commit
af6eee1084
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2007-08-29 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* ext/alsa/gstalsa.c:
|
||||||
|
Fix typo and compilation on big endian systems.
|
||||||
|
|
||||||
2007-08-29 Tim-Philipp Müller <tim at centricular dot net>
|
2007-08-29 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* gst/subparse/gstssaparse.c:
|
* gst/subparse/gstssaparse.c:
|
||||||
|
|
|
@ -96,9 +96,9 @@ static const struct
|
||||||
#if (G_BYTE_ORDER == G_LITTLE_ENDIAN) /* no endian-unspecific enum available */
|
#if (G_BYTE_ORDER == G_LITTLE_ENDIAN) /* no endian-unspecific enum available */
|
||||||
24, 24, SND_PCM_FORMAT_S24_3LE, SND_PCM_FORMAT_U24_3LE}, {
|
24, 24, SND_PCM_FORMAT_S24_3LE, SND_PCM_FORMAT_U24_3LE}, {
|
||||||
#else
|
#else
|
||||||
24, 24, SND_PCM_FORMAT_S24_3BE, SND_PCM_FORMAT_U24_3BE},}
|
24, 24, SND_PCM_FORMAT_S24_3BE, SND_PCM_FORMAT_U24_3BE}, {
|
||||||
#endif
|
#endif
|
||||||
32, 32, SND_PCM_FORMAT_S32, SND_PCM_FORMAT_U32}
|
32, 32, SND_PCM_FORMAT_S32, SND_PCM_FORMAT_U32}
|
||||||
};
|
};
|
||||||
|
|
||||||
static GstCaps *
|
static GstCaps *
|
||||||
|
|
Loading…
Reference in a new issue