comparison h264.c @ 11533:e9640e8aeea3 libavcodec

Remove unused variable, fixes the warning: libavcodec/h264.c:1562: warning: unused variable `s'
author diego
date Tue, 23 Mar 2010 17:55:08 +0000
parents 9adad5749f23
children e603f624b03f
comparison
equal deleted inserted replaced
11532:e011e73a902b 11533:e9640e8aeea3
1557 1557
1558 /** 1558 /**
1559 * initialize scan tables 1559 * initialize scan tables
1560 */ 1560 */
1561 static void init_scan_tables(H264Context *h){ 1561 static void init_scan_tables(H264Context *h){
1562 MpegEncContext * const s = &h->s;
1563 int i; 1562 int i;
1564 if(h->h264dsp.h264_idct_add == ff_h264_idct_add_c){ //FIXME little ugly 1563 if(h->h264dsp.h264_idct_add == ff_h264_idct_add_c){ //FIXME little ugly
1565 memcpy(h->zigzag_scan, zigzag_scan, 16*sizeof(uint8_t)); 1564 memcpy(h->zigzag_scan, zigzag_scan, 16*sizeof(uint8_t));
1566 memcpy(h-> field_scan, field_scan, 16*sizeof(uint8_t)); 1565 memcpy(h-> field_scan, field_scan, 16*sizeof(uint8_t));
1567 }else{ 1566 }else{