Remove unused variable, fixes the warning:

libavcodec/h264.c:1562: warning: unused variable `s'

Originally committed as revision 22647 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2010-03-23 17:55:08 +00:00
parent 1922c0a773
commit 6f2c72c126
1 changed files with 0 additions and 1 deletions

View File

@ -1559,7 +1559,6 @@ static int init_poc(H264Context *h){
* 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));