comparison h263dec.c @ 9998:6b229807a182 libavcodec

Remove unused debug av_log() calls.
author diego
date Thu, 30 Jul 2009 20:57:41 +0000
parents 67f917b48068
children 8cf141fae2f3
comparison
equal deleted inserted replaced
9997:53d8841d4cc5 9998:6b229807a182
343 AVFrame *pict = data; 343 AVFrame *pict = data;
344 344
345 #ifdef PRINT_FRAME_TIME 345 #ifdef PRINT_FRAME_TIME
346 uint64_t time= rdtsc(); 346 uint64_t time= rdtsc();
347 #endif 347 #endif
348 #ifdef DEBUG
349 av_log(avctx, AV_LOG_DEBUG, "*****frame %d size=%d\n", avctx->frame_number, buf_size);
350 if(buf_size>0)
351 av_log(avctx, AV_LOG_DEBUG, "bytes=%x %x %x %x\n", buf[0], buf[1], buf[2], buf[3]);
352 #endif
353 s->flags= avctx->flags; 348 s->flags= avctx->flags;
354 s->flags2= avctx->flags2; 349 s->flags2= avctx->flags2;
355 350
356 /* no supplementary picture */ 351 /* no supplementary picture */
357 if (buf_size == 0) { 352 if (buf_size == 0) {
628 623
629 if (avctx->hwaccel) { 624 if (avctx->hwaccel) {
630 if (avctx->hwaccel->start_frame(avctx, buf, buf_size) < 0) 625 if (avctx->hwaccel->start_frame(avctx, buf, buf_size) < 0)
631 return -1; 626 return -1;
632 } 627 }
633
634 #ifdef DEBUG
635 av_log(avctx, AV_LOG_DEBUG, "qscale=%d\n", s->qscale);
636 #endif
637 628
638 ff_er_frame_start(s); 629 ff_er_frame_start(s);
639 630
640 //the second part of the wmv2 header contains the MB skip bits which are stored in current_picture->mb_type 631 //the second part of the wmv2 header contains the MB skip bits which are stored in current_picture->mb_type
641 //which is not available before MPV_frame_start() 632 //which is not available before MPV_frame_start()