summaryrefslogtreecommitdiff
path: root/libavcodec/adpcmenc.c
diff options
context:
space:
mode:
authorZane van Iperen <zane@zanevaniperen.com>2020-10-14 22:56:49 +1000
committerZane van Iperen <zane@zanevaniperen.com>2020-10-17 09:36:07 +1000
commitbf4a253f3829a1faf5c8ba30bf79cd7170e87af8 (patch)
tree971eeb498d86a2bdb880f314517effd9fb33277e /libavcodec/adpcmenc.c
parente368be52303df72d152f0a0cb54672fe3c0834a9 (diff)
avcodec/adpcmenc: remove BLKSIZE #define
Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
Diffstat (limited to 'libavcodec/adpcmenc.c')
-rw-r--r--libavcodec/adpcmenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/adpcmenc.c b/libavcodec/adpcmenc.c
index 725d418edc..b2be83b84e 100644
--- a/libavcodec/adpcmenc.c
+++ b/libavcodec/adpcmenc.c
@@ -857,7 +857,7 @@ static const AVOption options[] = {
.help = "set the block size",
.offset = offsetof(ADPCMEncodeContext, block_size),
.type = AV_OPT_TYPE_INT,
- .default_val = {.i64 = BLKSIZE},
+ .default_val = {.i64 = 1024},
.min = 32,
.max = 8192, /* Is this a reasonable upper limit? */
.flags = AV_OPT_FLAG_ENCODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM