summaryrefslogtreecommitdiff
path: root/gst/adpcmdec
diff options
context:
space:
mode:
authorMichael Smith <msmith@songbirdnest.com>2009-12-10 10:10:15 -0800
committerMichael Smith <msmith@songbirdnest.com>2009-12-10 10:12:24 -0800
commit4232bbb4e1c5c17ed4f58175f6c8a303e34d0367 (patch)
tree66f00ff7dbaa435a85a8956d106feda8d1c27ab3 /gst/adpcmdec
parented058d75420bdc9a407787c60d597ebb76aaf2a9 (diff)
downloadgstreamer-plugins-bad-4232bbb4e1c5c17ed4f58175f6c8a303e34d0367.tar.gz
adpcmdec: make power of 2 more accurate.
Diffstat (limited to 'gst/adpcmdec')
-rw-r--r--gst/adpcmdec/adpcmdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/adpcmdec/adpcmdec.c b/gst/adpcmdec/adpcmdec.c
index 25535b95e..905f3b772 100644
--- a/gst/adpcmdec/adpcmdec.c
+++ b/gst/adpcmdec/adpcmdec.c
@@ -51,7 +51,7 @@ static GstStaticPadTemplate adpcmdec_sink_template =
GST_PAD_ALWAYS,
GST_STATIC_CAPS ("audio/x-adpcm, "
" layout=(string){microsoft, dvi}, "
- " block_align = (int) [64, 8096], "
+ " block_align = (int) [64, 8192], "
" rate = (int)[ 1, MAX ], " "channels = (int)[1,2];")
);