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/encavcodec.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/encavcodec.c')
-rw-r--r-- | libhb/encavcodec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/encavcodec.c b/libhb/encavcodec.c index f8f9d4796..04125301c 100644 --- a/libhb/encavcodec.c +++ b/libhb/encavcodec.c @@ -224,7 +224,7 @@ int encavcodecInit( hb_work_object_t * w, hb_job_t * job ) if( job->pass == 1 ) { - pv->file = fopen( filename, "wb" ); + pv->file = hb_fopen(filename, "wb"); context->flags |= CODEC_FLAG_PASS1; } else @@ -232,7 +232,7 @@ int encavcodecInit( hb_work_object_t * w, hb_job_t * job ) int size; char * log; - pv->file = fopen( filename, "rb" ); + pv->file = hb_fopen(filename, "rb"); fseek( pv->file, 0, SEEK_END ); size = ftell( pv->file ); fseek( pv->file, 0, SEEK_SET ); |