diff options
author | jstebbins <[email protected]> | 2015-04-07 16:59:08 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2015-04-07 16:59:08 +0000 |
commit | c3b23fbecb27b44b982a127732760bc7a7ddf40e (patch) | |
tree | bff96765a8ea5e984563d2e3989e5610769a8f2a /libhb | |
parent | ba20956ea8d762dd0a8b0f1aa27965ef51b5468f (diff) |
deccc608sub: fix range for tab offsets
taboffset3 command was getting ignored so alignment was incorrect
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7067 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/deccc608sub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/deccc608sub.c b/libhb/deccc608sub.c index 25ff7a15a..ab9e2522e 100644 --- a/libhb/deccc608sub.c +++ b/libhb/deccc608sub.c @@ -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); |