Browse Source

avcodec/h264_slice: Silence pointer type warnings

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.8
Michael Niedermayer 10 years ago
parent
commit
29b0923324
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/h264_slice.c

+ 1
- 1
libavcodec/h264_slice.c View File

@@ -383,7 +383,7 @@ void ff_h264_init_dequant_tables(H264Context *h)
}
}

#define IN_RANGE(a, b, size) (((a) >= (b)) && ((a) < ((b) + (size))))
#define IN_RANGE(a, b, size) (((void*)(a) >= (void*)(b)) && ((void*)(a) < (void*)((b) + (size))))

#define REBASE_PICTURE(pic, new_ctx, old_ctx) \
(((pic) && (pic) >= (old_ctx)->DPB && \


Loading…
Cancel
Save