summaryrefslogtreecommitdiffstats
path: root/libhb/decvobsub.c
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2010-09-28 22:10:49 +0000
committerjstebbins <[email protected]>2010-09-28 22:10:49 +0000
commit03b2ce0e91c4e4ed44445a075ef5f35bc052b5b8 (patch)
tree24a1def4ca91cba98676508c6a3b1482ba131cb5 /libhb/decvobsub.c
parentf1997be4ed1dd373316ac842685f18a6f8ab05ba (diff)
SSA subtitle burn in
Anime fans rejoice! This patch adds SSA subtitle burn-in support with libass. Therefore SSA subtitles should now be rendered in full quality, with the appropriate embedded fonts and positioning information. Thanks to davidfstr git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3557 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/decvobsub.c')
-rw-r--r--libhb/decvobsub.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libhb/decvobsub.c b/libhb/decvobsub.c
index 3b5177ca3..fc4a9e24f 100644
--- a/libhb/decvobsub.c
+++ b/libhb/decvobsub.c
@@ -17,10 +17,10 @@
*
* Output format of this decoder is PICTURESUB, which is:
* struct PictureSubPacket {
- * uint8_t lum[pixelCount];
- * uint8_t alpha[pixelCount];
- * uint8_t chromaU[pixelCount];
- * uint8_t chromaV[pixelCount];
+ * uint8_t lum[pixelCount]; // Y
+ * uint8_t alpha[pixelCount]; // alpha (max = 16)
+ * uint8_t chromaU[pixelCount]; // Cb
+ * uint8_t chromaV[pixelCount]; // Cr
* }
*/