Commit 9e968213 authored by michael's avatar michael

print "D" instead of "P" for dropable frames in flv with -debug 1


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@3810 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 41fae87f
......@@ -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=
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment