]> git.sesse.net Git - mlt/blobdiff - src/framework/mlt_consumer.c
mlt_consumer.c: apply_profile_properties: display_aspect_num -> display_aspect_den...
[mlt] / src / framework / mlt_consumer.c
index 175d355f298b85fa3dcc71eacc316bfc46ec4113..0a47eaa67486ef4fbc1f139967d1fefe3feef181 100644 (file)
@@ -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 );
 }