1
mirror of https://github.com/mpv-player/mpv synced 2025-01-05 03:06:28 +01:00

code before decleration, gcc2.95 fix

patch by Jan Knutar (jknutar SIGH nic BOOM fi)


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16616 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
ods15 2005-09-28 17:25:21 +00:00
parent ce1fc3dcb4
commit 11f81c76f9

View File

@ -729,17 +729,6 @@ static int dispatch_settings(xvid_mplayer_module_t *mod)
xvid_plugin_2pass2_t *pass2 = &mod->pass2;
XVIDRational ar;
//profile is unrestricted as default
profile_t *selected_profile = profileFromName("unrestricted");
if(xvidenc_profile)
selected_profile = profileFromName(xvidenc_profile);
if(!selected_profile)
{
mp_msg(MSGT_MENCODER,MSGL_ERR,
"xvid:[ERROR] \"%s\" is an invalid profile name\n", xvidenc_profile);
return(BAD);
}
const int motion_presets[7] =
{
0,
@ -752,6 +741,16 @@ static int dispatch_settings(xvid_mplayer_module_t *mod)
XVID_ME_HALFPELREFINE8 | XVID_ME_USESQUARES16
};
//profile is unrestricted as default
profile_t *selected_profile = profileFromName("unrestricted");
if(xvidenc_profile)
selected_profile = profileFromName(xvidenc_profile);
if(!selected_profile)
{
mp_msg(MSGT_MENCODER,MSGL_ERR,
"xvid:[ERROR] \"%s\" is an invalid profile name\n", xvidenc_profile);
return(BAD);
}
/* -------------------------------------------------------------------
* Dispatch all settings having an impact on the "create" structure