]> granicus.if.org Git - libass/commitdiff
Add stubs for a few unimplemented tags.
authoreugeni <eugeni@b3059339-0415-0410-9bf9-f77b7e298cf2>
Sat, 7 Feb 2009 01:13:07 +0000 (01:13 +0000)
committereugeni <eugeni@b3059339-0415-0410-9bf9-f77b7e298cf2>
Sat, 7 Feb 2009 01:13:07 +0000 (01:13 +0000)
Patch by Grigori G, greg at chown ath cx.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28472 b3059339-0415-0410-9bf9-f77b7e298cf2

libass/ass_render.c

index a526f3e56c2bf472e762a3adc0fad017d46b17aa..d41878b69edfde280d03dedb209d8c1ee577bdda 100644 (file)
@@ -694,7 +694,45 @@ static char* parse_tag(char* p, double pwr) {
        if ((*p == '}') || (*p == 0))
                return p;
 
-       if (mystrcmp(&p, "blur")) {
+       // New tags introduced in vsfilter 2.39
+       if (mystrcmp(&p, "xbord")) {
+               double val;
+               if (mystrtod(&p, &val))
+                       mp_msg(MSGT_ASS, MSGL_V, "stub: \\xbord%.2f\n", val);
+       } else if (mystrcmp(&p, "ybord")) {
+               double val;
+               if (mystrtod(&p, &val))
+                       mp_msg(MSGT_ASS, MSGL_V, "stub: \\ybord%.2f\n", val);
+       } else if (mystrcmp(&p, "xshad")) {
+               int val;
+               if (mystrtoi(&p, 10, &val))
+                       mp_msg(MSGT_ASS, MSGL_V, "stub: \\xshad%d\n", val);
+       } else if (mystrcmp(&p, "yshad")) {
+               int val;
+               if (mystrtoi(&p, 10, &val))
+                       mp_msg(MSGT_ASS, MSGL_V, "stub: \\yshad%d\n", val);
+       } else if (mystrcmp(&p, "fax")) {
+               int val;
+               if (mystrtoi(&p, 10, &val))
+                       mp_msg(MSGT_ASS, MSGL_V, "stub: \\fax%d\n", val);
+       } else if (mystrcmp(&p, "fay")) {
+               int val;
+               if (mystrtoi(&p, 10, &val))
+                       mp_msg(MSGT_ASS, MSGL_V, "stub: \\fay%d\n", val);
+       } else if (mystrcmp(&p, "iclip")) {
+               int x0, y0, x1, y1;
+               int res = 1;
+               skip('(');
+               res &= mystrtoi(&p, 10, &x0);
+               skip(',');
+               res &= mystrtoi(&p, 10, &y0);
+               skip(',');
+               res &= mystrtoi(&p, 10, &x1);
+               skip(',');
+               res &= mystrtoi(&p, 10, &y1);
+               skip(')');
+               mp_msg(MSGT_ASS, MSGL_V, "stub: \\iclip(%d,%d,%d,%d)\n", x0, y0, x1, y1);
+       } else if (mystrcmp(&p, "blur")) {
                double val;
                if (mystrtod(&p, &val)) {
                        val = (val < 0) ? 0 : val;