mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-19 13:55:41 +00:00
sbc: Fix runtime warnings of gstreamer plugin.
This commit is contained in:
parent
834a9b193b
commit
266cfb11b4
2 changed files with 4 additions and 4 deletions
|
@ -158,10 +158,10 @@ GST_STATIC_PAD_TEMPLATE ("src", GST_PAD_SRC, GST_PAD_ALWAYS,
|
|||
GST_STATIC_CAPS ("audio/x-sbc, "
|
||||
"rate = (int) { 16000, 32000, 44100, 48000 }, "
|
||||
"channels = (int) [ 1, 2 ], "
|
||||
"mode = (string) { mono, dual, stereo, joint }, "
|
||||
"mode = (string) { \"mono\", \"dual\", \"stereo\", \"joint\" }, "
|
||||
"blocks = (int) { 4, 8, 12, 16 }, "
|
||||
"subbands = (int) { 4, 8 }, "
|
||||
"allocation = (string) { snr, loudness },"
|
||||
"allocation = (string) { \"snr\", \"loudness\" }, "
|
||||
"bitpool = (int) [ " SBC_ENC_BITPOOL_MIN_STR
|
||||
", " SBC_ENC_BITPOOL_MAX_STR " ]"));
|
||||
|
||||
|
|
|
@ -50,10 +50,10 @@ GST_STATIC_PAD_TEMPLATE ("src", GST_PAD_SRC, GST_PAD_ALWAYS,
|
|||
GST_STATIC_CAPS ("audio/x-sbc, "
|
||||
"rate = (int) { 16000, 32000, 44100, 48000 }, "
|
||||
"channels = (int) [ 1, 2 ], "
|
||||
"mode = (string) { mono, dual, stereo, joint }, "
|
||||
"mode = (string) { \"mono\", \"dual\", \"stereo\", \"joint\" }, "
|
||||
"blocks = (int) { 4, 8, 12, 16 }, "
|
||||
"subbands = (int) { 4, 8 }, "
|
||||
"allocation = (string) { snr, loudness },"
|
||||
"allocation = (string) { \"snr\", \"loudness\" },"
|
||||
"bitpool = (int) [ 2, 64 ]," "parsed = (boolean) true"));
|
||||
|
||||
static GstFlowReturn
|
||||
|
|
Loading…
Reference in a new issue