Mercurial > libavcodec.hg
comparison h263.c @ 2414:18d77621fbc7 libavcodec
print "D" instead of "P" for dropable frames in flv with -debug 1
author | michael |
---|---|
date | Thu, 06 Jan 2005 01:02:36 +0000 |
parents | 25a24139f296 |
children | 18b8b2dcc037 |
comparison
equal
deleted
inserted
replaced
2413:d0b4f62a63ae | 2414:18d77621fbc7 |
---|---|
6139 } | 6139 } |
6140 s->f_code = 1; | 6140 s->f_code = 1; |
6141 | 6141 |
6142 if(s->avctx->debug & FF_DEBUG_PICT_INFO){ | 6142 if(s->avctx->debug & FF_DEBUG_PICT_INFO){ |
6143 av_log(s->avctx, AV_LOG_DEBUG, "%c esc_type:%d, qp:%d num:%d\n", | 6143 av_log(s->avctx, AV_LOG_DEBUG, "%c esc_type:%d, qp:%d num:%d\n", |
6144 av_get_pict_type_char(s->pict_type), s->h263_flv-1, s->qscale, s->picture_number); | 6144 s->dropable ? 'D' : av_get_pict_type_char(s->pict_type), s->h263_flv-1, s->qscale, s->picture_number); |
6145 } | 6145 } |
6146 | 6146 |
6147 s->y_dc_scale_table= | 6147 s->y_dc_scale_table= |
6148 s->c_dc_scale_table= ff_mpeg1_dc_scale_table; | 6148 s->c_dc_scale_table= ff_mpeg1_dc_scale_table; |
6149 | 6149 |