diff mbox series

[FFmpeg-devel,24/24] avcodec/motion_est: Remove unused field

Message ID AS8P250MB074494B15D004FE32039BCDF8F389@AS8P250MB0744.EURP250.PROD.OUTLOOK.COM
State Accepted
Commit a6657493da5ca6f53a92aa2bdd283e1d3a12b91e
Headers show
Series [FFmpeg-devel,01/19] avcodec/vc1: Don't check for AVCodecContext.codec | expand

Commit Message

Andreas Rheinhardt Nov. 3, 2022, 2:57 a.m. UTC
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavcodec/motion_est.h | 1 -
 1 file changed, 1 deletion(-)
diff mbox series

Patch

diff --git a/libavcodec/motion_est.h b/libavcodec/motion_est.h
index b20cdabbbb..f6a563b08c 100644
--- a/libavcodec/motion_est.h
+++ b/libavcodec/motion_est.h
@@ -52,7 +52,6 @@  typedef struct MotionEstContext {
     uint8_t *scratchpad;            /**< data area for the ME algo, so that
                                      * the ME does not need to malloc/free. */
     uint8_t *temp;
-    int best_bits;
     uint32_t *map;                  ///< map to avoid duplicate evaluations
     uint32_t *score_map;            ///< map to store the scores
     unsigned map_generation;