diff mbox series

[FFmpeg-devel,03/10] avcodec/vp8data: Remove unused array

Message ID 20210123204800.689497-3-andreas.rheinhardt@gmail.com
State Accepted
Commit a82001c8cf009e2de7b7f7a5bfb560c01f4d4f4c
Headers show
Series [FFmpeg-devel,01/10] avcodec/atrac3plus_data: Remove unused arrays | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished
andriy/PPC64_make success Make finished
andriy/PPC64_make_fate success Make fate finished

Commit Message

Andreas Rheinhardt Jan. 23, 2021, 8:47 p.m. UTC
Unused since 748f921ad1997a464fb8963d0ba2c5bb5e036b1b.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
---
 libavcodec/vp8data.h | 6 ------
 1 file changed, 6 deletions(-)

Comments

Peter Ross Jan. 24, 2021, 4:34 a.m. UTC | #1
On Sat, Jan 23, 2021 at 09:47:53PM +0100, Andreas Rheinhardt wrote:
> Unused since 748f921ad1997a464fb8963d0ba2c5bb5e036b1b.
> 
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
> ---
>  libavcodec/vp8data.h | 6 ------
>  1 file changed, 6 deletions(-)
> 
> diff --git a/libavcodec/vp8data.h b/libavcodec/vp8data.h
> index 5e6dea7617..1fcce134eb 100644
> --- a/libavcodec/vp8data.h
> +++ b/libavcodec/vp8data.h
> @@ -316,12 +316,6 @@ static const uint8_t vp8_pred4x4_prob_intra[10][10][9] = {
>      },
>  };
>  
> -static const int8_t vp8_segmentid_tree[][2] = {
> -    {  1,  2 },
> -    { -0, -1 }, // '00', '01'
> -    { -2, -3 }, // '10', '11'
> -};
> -
>  static const uint8_t vp8_coeff_band[16] = {
>      0, 1, 2, 3, 6, 4, 5, 6, 6, 6, 6, 6, 6, 6, 6, 7
>  };

looks good

-- Peter
(A907 E02F A6E5 0CD2 34CD 20D2 6760 79C5 AC40 DD6B)
diff mbox series

Patch

diff --git a/libavcodec/vp8data.h b/libavcodec/vp8data.h
index 5e6dea7617..1fcce134eb 100644
--- a/libavcodec/vp8data.h
+++ b/libavcodec/vp8data.h
@@ -316,12 +316,6 @@  static const uint8_t vp8_pred4x4_prob_intra[10][10][9] = {
     },
 };
 
-static const int8_t vp8_segmentid_tree[][2] = {
-    {  1,  2 },
-    { -0, -1 }, // '00', '01'
-    { -2, -3 }, // '10', '11'
-};
-
 static const uint8_t vp8_coeff_band[16] = {
     0, 1, 2, 3, 6, 4, 5, 6, 6, 6, 6, 6, 6, 6, 6, 7
 };