diff options
author | jstebbins <[email protected]> | 2013-09-22 17:19:38 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2013-09-22 17:19:38 +0000 |
commit | 5e712218d8eb3f71a06356ed6f952b86ca947fca (patch) | |
tree | cd20ec0c7f22a94c11594deb195c7ec939dee4d1 /libhb/decsrtsub.c | |
parent | 10fda25f44d362349694a42127e8ba4974a4a6ad (diff) |
libhb: make libhb internal character code utf8
This makes libhb expect all strings passed to it to be in utf8 format.
The cli converts the converts from the current code page to utf8. libhb
converts back to the current code page when necessary for libraries that
expect it.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5798 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/decsrtsub.c')
-rw-r--r-- | libhb/decsrtsub.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libhb/decsrtsub.c b/libhb/decsrtsub.c index 74377552e..8b8e5f446 100644 --- a/libhb/decsrtsub.c +++ b/libhb/decsrtsub.c @@ -535,9 +535,9 @@ static int decsrtInit( hb_work_object_t * w, hb_job_t * job ) } else { memset( &pv->current_entry, 0, sizeof( srt_entry_t ) ); - - pv->file = fopen( w->subtitle->config.src_filename, "r" ); - + + pv->file = hb_fopen(w->subtitle->config.src_filename, "r"); + if( !pv->file ) { hb_error("Could not open the SRT subtitle file '%s'\n", |