changeset 204:61f9cad50ff3 libavformat

* making resolution abbreviations right * introducing sntsc/spal for square pixel ntsc/pal
author romansh
date Fri, 29 Aug 2003 06:58:55 +0000
parents 184d22d04c84
children e5491d64edb3
files utils.c
diffstat 1 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/utils.c	Thu Aug 28 19:53:47 2003 +0000
+++ b/utils.c	Fri Aug 29 06:58:55 2003 +0000
@@ -1224,8 +1224,12 @@
 } AbvEntry;
 
 static AbvEntry frame_abvs[] = {
-    { "ntsc",      352, 240, 30000, 1001 },
-    { "pal",       352, 288,    25,    1 },
+    { "ntsc",      720, 480, 30000, 1001 },
+    { "pal",       720, 576,    25,    1 },
+    { "qntsc",     352, 240, 30000, 1001 }, /* VCD compliant ntsc */
+    { "qpal",      352, 288,    25,    1 }, /* VCD compliant pal */
+    { "sntsc",     352, 240, 30000, 1001 }, /* square pixel ntsc */
+    { "spal",      352, 288,    25,    1 }, /* square pixel pal */
     { "film",      352, 240,    24,    1 },
     { "ntsc-film", 352, 240, 24000, 1001 },
     { "sqcif",     128,  96,     0,    0 },