diff options
author | Mickaƫl Raulet <mraulet@insa-rennes.fr> | 2014-07-25 18:02:46 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-26 01:20:40 +0200 |
commit | 7df98d8c4d970e830619d19eb74687e7a3dfceb8 (patch) | |
tree | c84f87666c1115fd6c47ff70db743898182d067a | |
parent | 7bdcf5c934f085fe4643a049a931500b42a8b24b (diff) | |
download | ffmpeg-7df98d8c4d970e830619d19eb74687e7a3dfceb8.tar.gz |
x86/hevc: remove unused constant in deblocking filter
cherry picked from commit a3f7282eaa6f1ab0524fb966c6eade50c3025f99
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/x86/hevc_deblock.asm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/x86/hevc_deblock.asm b/libavcodec/x86/hevc_deblock.asm index f1fc7235e9..7874e3318f 100644 --- a/libavcodec/x86/hevc_deblock.asm +++ b/libavcodec/x86/hevc_deblock.asm @@ -28,7 +28,6 @@ SECTION_RODATA pw_pixel_max_12: times 8 dw ((1 << 12)-1) pw_pixel_max_10: times 8 dw ((1 << 10)-1) -pw_pixel_max: times 8 dw ((1 << 10)-1) pw_m1: times 8 dw -1 pw_m2: times 8 dw -2 pd_1 : times 4 dd 1 |