comparison mpeg12.c @ 6494:1144fc79b912 libavcodec

Use correct t printf modifier for pointer differences.
author diego
date Fri, 14 Mar 2008 13:19:39 +0000
parents bed080a7ccbd
children 48759bfbd073
comparison
equal deleted inserted replaced
6493:bed080a7ccbd 6494:1144fc79b912
2308 } 2308 }
2309 2309
2310 input_size = buf_end - buf_ptr; 2310 input_size = buf_end - buf_ptr;
2311 2311
2312 if(avctx->debug & FF_DEBUG_STARTCODE){ 2312 if(avctx->debug & FF_DEBUG_STARTCODE){
2313 av_log(avctx, AV_LOG_DEBUG, "%3X at %zd left %d\n", start_code, buf_ptr-buf, input_size); 2313 av_log(avctx, AV_LOG_DEBUG, "%3X at %td left %d\n", start_code, buf_ptr-buf, input_size);
2314 } 2314 }
2315 2315
2316 /* prepare data for next start code */ 2316 /* prepare data for next start code */
2317 switch(start_code) { 2317 switch(start_code) {
2318 case SEQ_START_CODE: 2318 case SEQ_START_CODE: