diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2003-10-12 21:25:00 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2003-10-12 21:25:00 +0000 |
commit | ed7debda140ca5d1d8a7203abf92acb9f8eb112c (patch) | |
tree | 9c25183603e0d2793c81f0d1631a336190c38a4a /libavcodec/h264.c | |
parent | d6896c49ccd3f02500d0397b63b4dda5d9e24ea9 (diff) | |
download | ffmpeg-ed7debda140ca5d1d8a7203abf92acb9f8eb112c.tar.gz |
removed the obsolete and unused parameters of init_put_bits
Originally committed as revision 2366 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 96bba6266a..8bf9970368 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -4231,7 +4231,7 @@ int main(){ dsputil_init(&dsp, &avctx); - init_put_bits(&pb, temp, SIZE, NULL, NULL); + init_put_bits(&pb, temp, SIZE); printf("testing unsigned exp golomb\n"); for(i=0; i<COUNT; i++){ START_TIMER |