From 8437ff75f865cdc3849c6518409aa0ef85eb88cf Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 10 Mar 2006 22:00:36 +0000 Subject: asserts to check if assumed conditions really are true Originally committed as revision 5143 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/motion_est.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/motion_est.c') diff --git a/libavcodec/motion_est.c b/libavcodec/motion_est.c index 0967b7bb84..82b5f766ec 100644 --- a/libavcodec/motion_est.c +++ b/libavcodec/motion_est.c @@ -901,6 +901,8 @@ static int interlaced_search(MpegEncContext *s, int ref_index, int16_t (*mv_table)[2]= mv_tables[block][field_select]; if(user_field_select){ + assert(field_select==0 || field_select==1); + assert(field_select_tables[block][xy]==0 || field_select_tables[block][xy]==1); if(field_select_tables[block][xy] != field_select) continue; } -- cgit v1.2.3