comparison utils.c @ 1389:da0b3a50d209 libavcodec

rate distortion mb decision support fix decoding of old %16!=0 divx fix assertion failure in motion_est.c
author michaelni
date Tue, 29 Jul 2003 02:09:12 +0000
parents 0fd38b711f06
children e380ac39024a
comparison
equal deleted inserted replaced
1388:b5c65adac96a 1389:da0b3a50d209
487 487
488 switch(enc->codec_type) { 488 switch(enc->codec_type) {
489 case CODEC_TYPE_VIDEO: 489 case CODEC_TYPE_VIDEO:
490 snprintf(buf, buf_size, 490 snprintf(buf, buf_size,
491 "Video: %s%s", 491 "Video: %s%s",
492 codec_name, enc->flags & CODEC_FLAG_HQ ? " (hq)" : ""); 492 codec_name, enc->mb_decision ? " (hq)" : "");
493 if (enc->codec_id == CODEC_ID_RAWVIDEO) { 493 if (enc->codec_id == CODEC_ID_RAWVIDEO) {
494 snprintf(buf + strlen(buf), buf_size - strlen(buf), 494 snprintf(buf + strlen(buf), buf_size - strlen(buf),
495 ", %s", 495 ", %s",
496 avcodec_get_pix_fmt_name(enc->pix_fmt)); 496 avcodec_get_pix_fmt_name(enc->pix_fmt));
497 } 497 }