sbcparse: Fix up values for allocation enumeration.

https://bugzilla.gnome.org/show_bug.cgi?id=779389
This commit is contained in:
Michael Smith 2017-03-01 16:11:47 -08:00 committed by Olivier Crête
parent 71b63d54fe
commit f7b1eae3a2

View file

@ -44,8 +44,8 @@ typedef enum {
typedef enum {
GST_SBC_ALLOCATION_METHOD_INVALID = -1,
GST_SBC_ALLOCATION_METHOD_SNR = 0,
GST_SBC_ALLOCATION_METHOD_LOUDNESS = 1
GST_SBC_ALLOCATION_METHOD_LOUDNESS = 0,
GST_SBC_ALLOCATION_METHOD_SNR = 1
} GstSbcAllocationMethod;
typedef struct _GstSbcParse GstSbcParse;