diff options
author | Martin Vignali <martin.vignali@gmail.com> | 2018-11-17 23:32:43 +0100 |
---|---|---|
committer | Martin Vignali <martin.vignali@gmail.com> | 2018-12-02 12:55:15 +0100 |
commit | dae9b4b8a4d9aee62a9fbb944da40b08ff442365 (patch) | |
tree | d7b0d3c4bf4e6be9225ac17a901f89b54ffc43a6 | |
parent | a87ca4bbcab067baefadd7833f107912f4698a00 (diff) | |
download | ffmpeg-dae9b4b8a4d9aee62a9fbb944da40b08ff442365.tar.gz |
avcodec/proresdsp : remove unused value
-rw-r--r-- | libavcodec/proresdsp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/proresdsp.c b/libavcodec/proresdsp.c index 5b5ada21fe..3c337dc433 100644 --- a/libavcodec/proresdsp.c +++ b/libavcodec/proresdsp.c @@ -27,7 +27,6 @@ #include "proresdsp.h" #include "simple_idct.h" -#define BIAS (1 << (PRORES_BITS_PER_SAMPLE - 1)) ///< bias value for converting signed pixels into unsigned ones #define CLIP_MIN (1 << (PRORES_BITS_PER_SAMPLE - 8)) ///< minimum value for clipping resulting pixels #define CLIP_MAX (1 << PRORES_BITS_PER_SAMPLE) - CLIP_MIN - 1 ///< maximum value for clipping resulting pixels |