diff options
author | jstebbins <[email protected]> | 2012-04-26 19:11:03 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2012-04-26 19:11:03 +0000 |
commit | 143f723b12881a8ab3732386785a00840bb2c934 (patch) | |
tree | c1bfd505f424c241a34ed5f90e474efac637c4fc /libhb/hb_dict.c | |
parent | 3f9828657ded40e2eabfef8f01fa2182a4eccd36 (diff) |
PGS (bluray) subtitle support \o/
Thanks to patches supplied by David Mitchell and Rob McMullen
we finally have PGS support.
I added a fix for libav pgs timestamp processing and
detection of forced subtitles to their work, then
made foreign audio search work with PGS subs.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4605 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/hb_dict.c')
-rw-r--r-- | libhb/hb_dict.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libhb/hb_dict.c b/libhb/hb_dict.c index 31b5492ad..5912139d5 100644 --- a/libhb/hb_dict.c +++ b/libhb/hb_dict.c @@ -155,7 +155,8 @@ hb_dict_t * hb_encopts_to_dict( const char * encopts, int encoder ) hb_dict_t * dict = NULL; if( encopts && *encopts ) { - char *cur_opt, *opts_start, *name, *value; + char *cur_opt, *opts_start, *value; + const char *name; dict = hb_dict_init( 10 ); if( !dict ) return NULL; |