From: Alexey Panarin Date: Fri, 28 Jun 2013 15:55:13 +0000 (-0700) Subject: mlt_consumer.c: apply_profile_properties: display_aspect_num -> display_aspect_den... X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=8db690decb304a447407e30ea11f535ea2256dd7;p=mlt mlt_consumer.c: apply_profile_properties: display_aspect_num -> display_aspect_den (typo) --- diff --git a/src/framework/mlt_consumer.c b/src/framework/mlt_consumer.c index 175d355f..0a47eaa6 100644 --- a/src/framework/mlt_consumer.c +++ b/src/framework/mlt_consumer.c @@ -179,7 +179,7 @@ static void apply_profile_properties( mlt_consumer self, mlt_profile profile, ml mlt_properties_set_int( properties, "sample_aspect_den", profile->sample_aspect_den ); mlt_properties_set_double( properties, "display_ratio", mlt_profile_dar( profile ) ); mlt_properties_set_int( properties, "display_aspect_num", profile->display_aspect_num ); - mlt_properties_set_int( properties, "display_aspect_num", profile->display_aspect_num ); + mlt_properties_set_int( properties, "display_aspect_den", profile->display_aspect_den ); mlt_properties_set_int( properties, "colorspace", profile->colorspace ); mlt_event_unblock( priv->event_listener ); }