summaryrefslogtreecommitdiffstats
path: root/libhb/decsrtsub.c
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2009-08-28 22:11:25 +0000
committerjstebbins <[email protected]>2009-08-28 22:11:25 +0000
commite10712946a90010521e8416cf29aa31a107ec10e (patch)
tree88f9d0de5104fd31d81c20e01228b2504abc3ec8 /libhb/decsrtsub.c
parentd4e94dcd9821cbce69718b7623a01b415172fa78 (diff)
srt: change format string from "utf8" to "utf-8"
mingw port of libiconv doesn't support "utf8" string git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2787 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/decsrtsub.c')
-rw-r--r--libhb/decsrtsub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/decsrtsub.c b/libhb/decsrtsub.c
index 05fdb7646..0fcb1a035 100644
--- a/libhb/decsrtsub.c
+++ b/libhb/decsrtsub.c
@@ -261,7 +261,7 @@ static int decsrtInit( hb_work_object_t * w, hb_job_t * job )
hb_deep_log( 3, "SRT Start time %"PRId64", stop time %"PRId64, pv->start_time, pv->stop_time);
- pv->iconv_context = iconv_open( "utf8", pv->subtitle->config.src_codeset );
+ pv->iconv_context = iconv_open( "utf-8", pv->subtitle->config.src_codeset );
if( pv->iconv_context == (iconv_t) -1 )