view TOOLS/subfont-c/encodings/charmap2enc @ 20424:945fa0eb37c0

Add ASS subtitle rendering options to gui. Patch by Piotr Kaczuba <pepe at attika dot ath dot cx>.
author eugeni
date Wed, 25 Oct 2006 00:05:14 +0000
parents 842c29861e25
children
line wrap: on
line source

#!/usr/bin/awk -f
# only for mostly 2-byte encodings like euc-kr

$2~"^/x..$" {
	c = substr($2, 3, 2)
	if (c<"80")
	    print substr($1, 3, 4) "\t" c
}
$2~"^/x../x..$" {
	print substr($1, 3, 4) "\t" substr($2, 3, 2) substr($2, 7, 2)
}