mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
flacenc: order format in template caps by preference
To minimise risk of bad fixation, though audioconvert at least should be smart enough to avoid it.
This commit is contained in:
parent
99bf36b55d
commit
85501e6c2a
1 changed files with 2 additions and 2 deletions
|
@ -98,9 +98,9 @@ static const GstAudioChannelPosition channel_positions[8][8] = {
|
|||
};
|
||||
|
||||
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
|
||||
#define FORMATS "{ S8, S16LE, S24LE, S24_32LE } "
|
||||
#define FORMATS "{ S24LE, S24_32LE, S16LE, S8 } "
|
||||
#else
|
||||
#define FORMATS "{ S8, S16BE, S24BE, S24_32BE } "
|
||||
#define FORMATS "{ S24BE, S24_32BE, S16BE, S8 } "
|
||||
#endif
|
||||
|
||||
#define FLAC_SINK_CAPS \
|
||||
|
|
Loading…
Reference in a new issue