Commit 6f2c72c1 authored by Diego Biurrun's avatar Diego Biurrun

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
parent 1922c0a7
...@@ -1559,7 +1559,6 @@ static int init_poc(H264Context *h){ ...@@ -1559,7 +1559,6 @@ static int init_poc(H264Context *h){
* initialize scan tables * initialize scan tables
*/ */
static void init_scan_tables(H264Context *h){ static void init_scan_tables(H264Context *h){
MpegEncContext * const s = &h->s;
int i; int i;
if(h->h264dsp.h264_idct_add == ff_h264_idct_add_c){ //FIXME little ugly if(h->h264dsp.h264_idct_add == ff_h264_idct_add_c){ //FIXME little ugly
memcpy(h->zigzag_scan, zigzag_scan, 16*sizeof(uint8_t)); memcpy(h->zigzag_scan, zigzag_scan, 16*sizeof(uint8_t));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment