Message ID | 20200926102804.228089-16-andreas.rheinhardt@gmail.com |
---|---|
State | Accepted |
Commit | 5f5f0b06cf1f4aed336467b826962d7f85b81a1e |
Headers | show |
Series | [FFmpeg-devel,01/25] avcodec/photocd: Simplify parsing Huffman tables a bit | expand |
Context | Check | Description |
---|---|---|
andriy/default | pending | |
andriy/make | success | Make finished |
andriy/make_fate | success | Make fate finished |
On Sat, Sep 26, 2020 at 12:27:55PM +0200, Andreas Rheinhardt wrote: > Unused since 3594788b713e76449eda0bc9d64b38258c86a594. > > Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> > --- > libavcodec/utvideo.c | 2 -- > 1 file changed, 2 deletions(-) > lgtm > 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; > -- > 2.25.1 > > _______________________________________________ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > https://ffmpeg.org/mailman/listinfo/ffmpeg-devel > > To unsubscribe, visit link above, or email > ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
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;
Unused since 3594788b713e76449eda0bc9d64b38258c86a594. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> --- libavcodec/utvideo.c | 2 -- 1 file changed, 2 deletions(-)