diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-10-13 00:59:49 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-10-15 12:17:10 +0200 |
commit | d2fd0ea1d7feb31bea67a5143108b4ec64eb2287 (patch) | |
tree | 102224858b6a37f6092c4ca0f600093ae2635e86 | |
parent | a010193fcb3788862e50561093f8f0eecb08d6a1 (diff) | |
download | ffmpeg-d2fd0ea1d7feb31bea67a5143108b4ec64eb2287.tar.gz |
avcodec/motion_est: Remove unused elements
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/motion_est.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/motion_est.h b/libavcodec/motion_est.h index 292bdc70e9..b20cdabbbb 100644 --- a/libavcodec/motion_est.h +++ b/libavcodec/motion_est.h @@ -51,8 +51,6 @@ typedef struct MotionEstContext { int direct_basis_mv[4][2]; uint8_t *scratchpad; /**< data area for the ME algo, so that * the ME does not need to malloc/free. */ - uint8_t *best_mb; - uint8_t *temp_mb[2]; uint8_t *temp; int best_bits; uint32_t *map; ///< map to avoid duplicate evaluations |