diff options
author | Diego Biurrun <diego@biurrun.de> | 2010-03-23 17:55:08 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2010-03-23 17:55:08 +0000 |
commit | 6f2c72c126abee225c4ab60f38a929384a080c5f (patch) | |
tree | 6e8f598c250f75b6d96b6dbe96c393778820347b /libavcodec | |
parent | 1922c0a7732f8a21510f59fdd8ccff6b33280827 (diff) | |
download | ffmpeg-6f2c72c126abee225c4ab60f38a929384a080c5f.tar.gz |
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
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h264.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 4cd2933933..44f87833cf 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -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)); |