From 0278d02ae0ff251daf6d29f97864bb173feaefe8 Mon Sep 17 00:00:00 2001 From: ddennedy Date: Sun, 1 Jun 2008 20:41:23 +0000 Subject: [PATCH] mlt_profile.c: make fallback default sample aspect ratio the same as the revised profile's sample aspect ratio git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@1129 d19143bc-622f-0410-bfdd-b5b2a6649095 --- src/framework/mlt_profile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/framework/mlt_profile.c b/src/framework/mlt_profile.c index 960550e8..ea5f098e 100644 --- a/src/framework/mlt_profile.c +++ b/src/framework/mlt_profile.c @@ -109,8 +109,8 @@ mlt_profile mlt_profile_init( const char *name ) profile->width = 720; profile->height = 576; profile->progressive = 0; - profile->sample_aspect_num = 59; - profile->sample_aspect_den = 54; + profile->sample_aspect_num = 16; + profile->sample_aspect_den = 15; profile->display_aspect_num = 4; profile->display_aspect_den = 3; } -- 2.39.2