changeset 10814:7f34ec540e0f

size presets: added the standard resolutions as proposed by Fabrice (ffmpeg)
author alex
date Fri, 05 Sep 2003 15:30:46 +0000
parents f646e30ba119
children 58c6f2998afa
files libmpcodecs/vf_scale.c
diffstat 1 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/vf_scale.c	Fri Sep 05 14:18:03 2003 +0000
+++ b/libmpcodecs/vf_scale.c	Fri Sep 05 15:30:46 2003 +0000
@@ -471,7 +471,12 @@
   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}
 };