# HG changeset patch # User diego # Date 1269366908 0 # Node ID e9640e8aeea37814fce55b013dc2500f0e5362c2 # Parent e011e73a902b5d1e093fd1cbd5854d9706f7c18d Remove unused variable, fixes the warning: libavcodec/h264.c:1562: warning: unused variable `s' diff -r e011e73a902b -r e9640e8aeea3 h264.c --- a/h264.c Tue Mar 23 03:35:02 2010 +0000 +++ b/h264.c Tue Mar 23 17:55:08 2010 +0000 @@ -1559,7 +1559,6 @@ * initialize scan tables */ static void init_scan_tables(H264Context *h){ - MpegEncContext * const s = &h->s; int i; if(h->h264dsp.h264_idct_add == ff_h264_idct_add_c){ //FIXME little ugly memcpy(h->zigzag_scan, zigzag_scan, 16*sizeof(uint8_t));