aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/mlp.h
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2023-10-18 22:56:52 +0200
committerPaul B Mahol <onemda@gmail.com>2023-10-18 23:01:40 +0200
commite7a6bba51a0efc0d59aa1fc98527c4bef58651c3 (patch)
tree71f1f685d6f52c60b9b1d672eea7805f9a359aa4 /libavcodec/mlp.h
parentbe2bbfe71d5566b009f3695636285d89747a741e (diff)
downloadffmpeg-e7a6bba51a0efc0d59aa1fc98527c4bef58651c3.tar.gz
avcodec/mlp*: merge flags used by encoder and decoder
Diffstat (limited to 'libavcodec/mlp.h')
-rw-r--r--libavcodec/mlp.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/libavcodec/mlp.h b/libavcodec/mlp.h
index 8a3e4566a3..cf12ac08fd 100644
--- a/libavcodec/mlp.h
+++ b/libavcodec/mlp.h
@@ -70,6 +70,15 @@
/** Code that signals end of a stream. */
#define END_OF_STREAM 0xd234d234
+#define PARAM_BLOCKSIZE (1 << 7)
+#define PARAM_MATRIX (1 << 6)
+#define PARAM_OUTSHIFT (1 << 5)
+#define PARAM_QUANTSTEP (1 << 4)
+#define PARAM_FIR (1 << 3)
+#define PARAM_IIR (1 << 2)
+#define PARAM_HUFFOFFSET (1 << 1)
+#define PARAM_PRESENCE (1 << 0)
+
#define FIR 0
#define IIR 1