summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2011-06-03 11:37:35 +0200
committerFelipe Contreras <felipe.contreras@nokia.com>2011-07-15 15:03:18 +0300
commitb378609152d0a9bb99398acbcbffe727ae7f711d (patch)
tree1ae5b510f94233869a483dfb4babc52db92afcdf
parentcc7db334c4c040e526dc703794efca11c7109aa2 (diff)
omx_volume: fix default caps
The bellagio volume component only supports 44.1kHz and 2 channels. It doesn't even handle setting of the OMX_IndexParamAudioPcm parameter correctly. Signed-off-by: Felipe Contreras <felipe.contreras@nokia.com>
-rw-r--r--omx/gstomx.conf.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/omx/gstomx.conf.in b/omx/gstomx.conf.in
index 038c82d..ff6c86f 100644
--- a/omx/gstomx.conf.in
+++ b/omx/gstomx.conf.in
@@ -289,6 +289,6 @@ omx_volume,
type=GstOmxVolume,
library-name=libomxil-bellagio.so.0,
component-name=OMX.st.volume.component,
- sink=RAW_AUDIO_CAPS("[8000, 48000]", "[1, 8]"),
- src=RAW_AUDIO_CAPS("[8000, 48000]", "[1, 8]"),
+ sink=RAW_AUDIO_CAPS("44100", "2"),
+ src=RAW_AUDIO_CAPS("44100", "2"),
rank=0;