comparison h264.c @ 1522:79dddc5cd990 libavcodec

removed the obsolete and unused parameters of init_put_bits
author alex
date Sun, 12 Oct 2003 21:25:00 +0000
parents 20a79b0e6d2a
children 7f9f0bedc2e1
comparison
equal deleted inserted replaced
1521:c232b6753012 1522:79dddc5cd990
4229 DSPContext dsp; 4229 DSPContext dsp;
4230 AVCodecContext avctx; 4230 AVCodecContext avctx;
4231 4231
4232 dsputil_init(&dsp, &avctx); 4232 dsputil_init(&dsp, &avctx);
4233 4233
4234 init_put_bits(&pb, temp, SIZE, NULL, NULL); 4234 init_put_bits(&pb, temp, SIZE);
4235 printf("testing unsigned exp golomb\n"); 4235 printf("testing unsigned exp golomb\n");
4236 for(i=0; i<COUNT; i++){ 4236 for(i=0; i<COUNT; i++){
4237 START_TIMER 4237 START_TIMER
4238 set_ue_golomb(&pb, i); 4238 set_ue_golomb(&pb, i);
4239 STOP_TIMER("set_ue_golomb"); 4239 STOP_TIMER("set_ue_golomb");