diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-09-24 18:30:54 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-09-26 21:10:45 +0200 |
commit | 5f5f0b06cf1f4aed336467b826962d7f85b81a1e (patch) | |
tree | c9b6141712eea91fbaa920fc3cc78fe3d069e3e3 | |
parent | 341914495e5c2f60bc920b0c6f660e5948a47f5a (diff) | |
download | ffmpeg-5f5f0b06cf1f4aed336467b826962d7f85b81a1e.tar.gz |
avcodec/utvideo: Remove unused array
Unused since 3594788b713e76449eda0bc9d64b38258c86a594.
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/utvideo.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/utvideo.c b/libavcodec/utvideo.c index b14e56e0d8..0cf0cbcd8b 100644 --- a/libavcodec/utvideo.c +++ b/libavcodec/utvideo.c @@ -32,8 +32,6 @@ const int ff_ut_pred_order[5] = { }; #endif -const int ff_ut_rgb_order[4] = { 1, 2, 0, 3 }; // G, B, R, A - int ff_ut_huff_cmp_len(const void *a, const void *b) { const HuffEntry *aa = a, *bb = b; |