@ -4781,13 +4781,6 @@ static int decode_user_data(MpegEncContext *s, GetBitContext *gb){
s - > divx_version = ver ;
s - > divx_build = build ;
s - > divx_packed = e = = 3 & & last = = ' p ' ;
if ( s - > picture_number = = 0 ) {
printf ( " This file was encoded with DivX%d Build%d " , ver , build ) ;
if ( s - > divx_packed )
printf ( " p \n " ) ;
else
printf ( " \n " ) ;
}
}
/* ffmpeg detection */
@ -4803,16 +4796,12 @@ static int decode_user_data(MpegEncContext *s, GetBitContext *gb){
if ( e = = 4 ) {
s - > ffmpeg_version = ver * 256 * 256 + ver2 * 256 + ver3 ;
s - > lavc_build = build ;
if ( s - > picture_number = = 0 )
printf ( " This file was encoded with libavcodec build %d \n " , build ) ;
}
/* xvid detection */
e = sscanf ( buf , " XviD%d " , & build ) ;
if ( e = = 1 ) {
s - > xvid_build = build ;
if ( s - > picture_number = = 0 )
printf ( " This file was encoded with XviD build %d \n " , build ) ;
}
//printf("User Data: %s\n", buf);
@ -4982,12 +4971,12 @@ static int decode_vop_header(MpegEncContext *s, GetBitContext *gb){
s - > b_code = 1 ;
if ( s - > avctx - > debug & FF_DEBUG_PICT_INFO ) {
printf ( " qp:%d fc:%d,%d %s size:%d pro:%d alt:%d top:%d %spel part:%d resync:%d w:%d a:%d rnd:%d \n " ,
printf ( " qp:%d fc:%d,%d %s size:%d pro:%d alt:%d top:%d %spel part:%d resync:%d w:%d a:%d rnd:%d vot:%d%s \n " ,
s - > qscale , s - > f_code , s - > b_code ,
s - > pict_type = = I_TYPE ? " I " : ( s - > pict_type = = P_TYPE ? " P " : ( s - > pict_type = = B_TYPE ? " B " : " S " ) ) ,
gb - > size_in_bits , s - > progressive_sequence , s - > alternate_scan , s - > top_field_first ,
s - > quarter_sample ? " q " : " h " , s - > data_partitioning , s - > resync_marker , s - > num_sprite_warping_points ,
s - > sprite_warping_accuracy , 1 - s - > no_rounding ) ;
s - > sprite_warping_accuracy , 1 - s - > no_rounding , s - > vo_type , s - > vol_control_parameters ? " VOLC " : " " ) ;
}
if ( ! s - > scalability ) {