changeset 2553:48c1b17233e8 libavcodec

remove an assert that was breaking compilation on some gccs.
author lorenm
date Mon, 07 Mar 2005 09:05:33 +0000
parents 9a7770ebed14
children 84a8f374bf63
files h264.c
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/h264.c	Sun Mar 06 23:20:53 2005 +0000
+++ b/h264.c	Mon Mar 07 09:05:33 2005 +0000
@@ -1272,7 +1272,6 @@
             }else{
                 const int ref0 = l1ref0[0] >= 0 ? h->map_col_to_list0[0][l1ref0[0]]
                                                 : h->map_col_to_list0[1][l1ref1[0]];
-                assert(ref0 >= 0);
                 const int dist_scale_factor = h->dist_scale_factor[ref0];
                 const int16_t *mv_col = l1mv0[0];
                 int mv_l0[2];
@@ -1304,7 +1303,6 @@
                     ref0 = h->map_col_to_list0[0][ref0];
                 else
                     ref0 = h->map_col_to_list0[1][l1ref1[x8 + y8*h->b8_stride]];
-                assert(ref0 >= 0);
                 dist_scale_factor = h->dist_scale_factor[ref0];
     
                 fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, ref0, 1);