diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-01-06 01:02:36 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-01-06 01:02:36 +0000 |
commit | 85df8f7cf0b30ebba2bfc9fdd48d2582729744cc (patch) | |
tree | a3d1ace1209747bb02b79477bec02eaff5d343e2 | |
parent | 3f05305d73aaf886051d0394466e4c50eb02da11 (diff) | |
download | ffmpeg-85df8f7cf0b30ebba2bfc9fdd48d2582729744cc.tar.gz |
print "D" instead of "P" for dropable frames in flv with -debug 1
Originally committed as revision 3810 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h263.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c index 78802672db..afb96727e4 100644 --- a/libavcodec/h263.c +++ b/libavcodec/h263.c @@ -6141,7 +6141,7 @@ int flv_h263_decode_picture_header(MpegEncContext *s) if(s->avctx->debug & FF_DEBUG_PICT_INFO){ av_log(s->avctx, AV_LOG_DEBUG, "%c esc_type:%d, qp:%d num:%d\n", - av_get_pict_type_char(s->pict_type), s->h263_flv-1, s->qscale, s->picture_number); + s->dropable ? 'D' : av_get_pict_type_char(s->pict_type), s->h263_flv-1, s->qscale, s->picture_number); } s->y_dc_scale_table= |