comparison dvbsubdec.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 23da44e8fd05
comparison
equal deleted inserted replaced
4121:fb40acd09af3 4122:daae66c03857
1491 DVBSubParseContext *pc = s->priv_data; 1491 DVBSubParseContext *pc = s->priv_data;
1492 uint8_t *p, *p_end; 1492 uint8_t *p, *p_end;
1493 int len, buf_pos = 0; 1493 int len, buf_pos = 0;
1494 1494
1495 #ifdef DEBUG 1495 #ifdef DEBUG
1496 av_log(avctx, AV_LOG_INFO, "DVB parse packet pts=%Lx, lpts=%Lx, cpts=%Lx:\n", 1496 av_log(avctx, AV_LOG_INFO, "DVB parse packet pts=%"PRIx64", lpts=%"PRIx64", cpts=%"PRIx64":\n",
1497 s->pts, s->last_pts, s->cur_frame_pts[s->cur_frame_start_index]); 1497 s->pts, s->last_pts, s->cur_frame_pts[s->cur_frame_start_index]);
1498 #endif 1498 #endif
1499 1499
1500 #ifdef DEBUG_PACKET_CONTENTS 1500 #ifdef DEBUG_PACKET_CONTENTS
1501 int i; 1501 int i;