summaryrefslogtreecommitdiff
path: root/libavcodec/msmpeg4data.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-01-26 22:19:19 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-01-29 06:28:24 +0100
commitd8b2fae3c73d92608abeaa04402fd05266e29bb2 (patch)
tree816e346a00f7a6036b48dc444c2550172d066860 /libavcodec/msmpeg4data.c
parentfbb81ea2c615b1189d21ea00127be205db36b342 (diff)
avcodec/msmpeg4: Inline number of motion vectors
Both motion vector tables have the same number of elements, hence one can inline said number and remove the field containing the number of elements from the structure. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/msmpeg4data.c')
-rw-r--r--libavcodec/msmpeg4data.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libavcodec/msmpeg4data.c b/libavcodec/msmpeg4data.c
index b9c1d8ec0b..fb0c6185bf 100644
--- a/libavcodec/msmpeg4data.c
+++ b/libavcodec/msmpeg4data.c
@@ -1771,13 +1771,11 @@ static const uint8_t table1_mvy[1099] = {
};
MVTable ff_mv_tables[2] = {
- { 1099,
- table0_mv_code,
+ { table0_mv_code,
table0_mv_bits,
table0_mvx,
table0_mvy, },
- { 1099,
- table1_mv_code,
+ { table1_mv_code,
table1_mv_bits,
table1_mvx,
table1_mvy, }