]> granicus.if.org Git - handbrake/commitdiff
deccc608sub: fix range for tab offsets
authorjstebbins <jstebbins.hb@gmail.com>
Tue, 7 Apr 2015 16:59:08 +0000 (16:59 +0000)
committerjstebbins <jstebbins.hb@gmail.com>
Tue, 7 Apr 2015 16:59:08 +0000 (16:59 +0000)
taboffset3 command was getting ignored so alignment was incorrect

git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7067 b64f7644-9d1e-0410-96f1-a4d463321fa5

libhb/deccc608sub.c

index 25ff7a15a9b1d58c89e83a89880886d8f320e85a..ab9e2522eb19a762780ee94e3cc596f714763398 100644 (file)
@@ -1662,7 +1662,7 @@ static int disCommand(unsigned char hi, unsigned char lo, struct s_write *wb)
                 handle_pac (hi,lo,wb);
             break;
         case 0x17:
-            if (lo>=0x21 && lo<=0x22)
+            if (lo>=0x21 && lo<=0x23)
                 handle_command (hi,lo,wb);
             if (lo>=0x2e && lo<=0x2f)
                 handle_text_attr (hi,lo,wb);