comparison mpegvideo.c @ 4122:daae66c03857 libavcodec

Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts. patch by Steve Lhomme, slhomme divxcorp com
author diego
date Wed, 01 Nov 2006 22:39:58 +0000
parents fb40acd09af3
children 0f28fc219799
comparison
equal deleted inserted replaced
4121:fb40acd09af3 4122:daae66c03857
2331 int b_frames; 2331 int b_frames;
2332 2332
2333 if(s->avctx->frame_skip_threshold || s->avctx->frame_skip_factor){ 2333 if(s->avctx->frame_skip_threshold || s->avctx->frame_skip_factor){
2334 if(s->picture_in_gop_number < s->gop_size && skip_check(s, s->input_picture[0], s->next_picture_ptr)){ 2334 if(s->picture_in_gop_number < s->gop_size && skip_check(s, s->input_picture[0], s->next_picture_ptr)){
2335 //FIXME check that te gop check above is +-1 correct 2335 //FIXME check that te gop check above is +-1 correct
2336 //av_log(NULL, AV_LOG_DEBUG, "skip %p %Ld\n", s->input_picture[0]->data[0], s->input_picture[0]->pts); 2336 //av_log(NULL, AV_LOG_DEBUG, "skip %p %"PRId64"\n", s->input_picture[0]->data[0], s->input_picture[0]->pts);
2337 2337
2338 if(s->input_picture[0]->type == FF_BUFFER_TYPE_SHARED){ 2338 if(s->input_picture[0]->type == FF_BUFFER_TYPE_SHARED){
2339 for(i=0; i<4; i++) 2339 for(i=0; i<4; i++)
2340 s->input_picture[0]->data[i]= NULL; 2340 s->input_picture[0]->data[i]= NULL;
2341 s->input_picture[0]->type= 0; 2341 s->input_picture[0]->type= 0;