Commit b378a233 authored by Michael Niedermayer's avatar Michael Niedermayer

vc1dec: sanity check state used in get_mvdata_interlaced()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent dcd013a5
...@@ -39,6 +39,7 @@ ...@@ -39,6 +39,7 @@
#include "simple_idct.h" #include "simple_idct.h"
#include "mathops.h" #include "mathops.h"
#include "vdpau_internal.h" #include "vdpau_internal.h"
#include "libavutil/avassert.h"
#undef NDEBUG #undef NDEBUG
#include <assert.h> #include <assert.h>
...@@ -1137,6 +1138,7 @@ static av_always_inline void get_mvdata_interlaced(VC1Context *v, int *dmv_x, ...@@ -1137,6 +1138,7 @@ static av_always_inline void get_mvdata_interlaced(VC1Context *v, int *dmv_x,
} }
} }
else { else {
av_assert0(index < esc);
if (extend_x) if (extend_x)
offs_tab = offset_table2; offs_tab = offset_table2;
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment