diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-05-06 23:42:24 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-05-07 13:24:32 +0200 |
commit | 39ce8a96958fdc80ebc549ab7525b06dadf8bbbd (patch) | |
tree | f7f6d258f718cda6fee2fc1029bf4f0f791b9c15 | |
parent | 2eab5a1f54cd08ea8b5a2b55a805718c51b26436 (diff) | |
download | ffmpeg-39ce8a96958fdc80ebc549ab7525b06dadf8bbbd.tar.gz |
avcodec/diracdec: Don't use EDGE_WIDTH from mpegpicture.h
There is nothing that forces us to use the same value
as mpegvideo_enc.c, so define our own constant.
Reviewed-by: Lynne <dev@lynne.ee>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/diracdec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/diracdec.c b/libavcodec/diracdec.c index f1fde0b339..3a36479c59 100644 --- a/libavcodec/diracdec.c +++ b/libavcodec/diracdec.c @@ -37,7 +37,6 @@ #include "golomb.h" #include "dirac_arith.h" #include "dirac_vlc.h" -#include "mpegpicture.h" #include "mpegvideoencdsp.h" #include "dirac_dwt.h" #include "dirac.h" @@ -45,6 +44,8 @@ #include "diracdsp.h" #include "videodsp.h" +#define EDGE_WIDTH 16 + /** * The spec limits this to 3 for frame coding, but in practice can be as high as 6 */ |