X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fdv%2Fproducer_libdv.c;h=249213d278943e31d30c18e95ee5ff271838d240;hb=f5da31bf950521eaef7fc1f7047603e28cbbb377;hp=7a0c16bc1e258efc7145997f822471a9ebccd4b6;hpb=363d095af9149cc181e92a35d2e34e583d061747;p=melted diff --git a/src/modules/dv/producer_libdv.c b/src/modules/dv/producer_libdv.c index 7a0c16b..249213d 100644 --- a/src/modules/dv/producer_libdv.c +++ b/src/modules/dv/producer_libdv.c @@ -76,7 +76,7 @@ dv_decoder_t *dv_decoder_alloc( ) // Configure the decoder this = dv_decoder_new( FALSE, FALSE, FALSE ); - this->quality = DV_QUALITY_COLOR | DV_QUALITY_AC_1; + this->quality = DV_QUALITY_COLOR | DV_QUALITY_AC_2; this->audio->arg_audio_emphasis = 2; dv_set_audio_correction( this, DV_AUDIO_CORRECT_AVERAGE ); @@ -419,7 +419,7 @@ static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int i // Parse the header for meta info dv_parse_header( dv_decoder, data ); - mlt_properties_set_int( properties, "progressive", dv_is_progressive( dv_decoder ) ); + //mlt_properties_set_int( properties, "progressive", dv_is_progressive( dv_decoder ) ); mlt_properties_set_double( properties, "aspect_ratio", dv_format_wide( dv_decoder ) ? ( this->is_pal ? 512.0/351.0 : 96.0/79.0 ) : ( this->is_pal ? 128.0/117.0 : 72.0/79.0 ) );