comparison h263dec.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 c8c591fe26f8
children 0f28fc219799
comparison
equal deleted inserted replaced
4121:fb40acd09af3 4122:daae66c03857
796 /* Return the Picture timestamp as the frame number */ 796 /* Return the Picture timestamp as the frame number */
797 /* we substract 1 because it is added on utils.c */ 797 /* we substract 1 because it is added on utils.c */
798 avctx->frame_number = s->picture_number - 1; 798 avctx->frame_number = s->picture_number - 1;
799 799
800 #ifdef PRINT_FRAME_TIME 800 #ifdef PRINT_FRAME_TIME
801 av_log(avctx, AV_LOG_DEBUG, "%Ld\n", rdtsc()-time); 801 av_log(avctx, AV_LOG_DEBUG, "%"PRId64"\n", rdtsc()-time);
802 #endif 802 #endif
803 803
804 return get_consumed_bytes(s, buf_size); 804 return get_consumed_bytes(s, buf_size);
805 } 805 }
806 806