size presets: added the standard resolutions as proposed by Fabrice (ffmpeg)

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10815 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2003-09-05 15:30:46 +00:00
parent e7f37248d3
commit 112e0a35f1
1 changed files with 6 additions and 1 deletions

View File

@ -471,7 +471,12 @@ static struct size_preset {
int w, h;
} vf_size_presets_defs[] = {
// TODO add more 'standard' resolutions
{ "pal", 768, 576 },
{ "qntsc", 352, 240 },
{ "qpal", 352, 288 },
{ "ntsc", 720, 480 },
{ "pal", 720, 576 },
{ "sntsc", 640, 480 },
{ "spal", 768, 576 },
{ NULL, 0, 0}
};