diff options
author | Rodeo <[email protected]> | 2012-07-15 16:44:37 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2012-07-15 16:44:37 +0000 |
commit | c171ef516b8df74903e38cf7c797c25303aff8be (patch) | |
tree | eb7f4b0fa344e25221b52c92b0bbcd2268fc7257 /libhb/decavcodec.c | |
parent | ebe7a46debf25f8c6b84320f69dd00d83a5a0b45 (diff) |
Fix something John and I both missed.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4839 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/decavcodec.c')
-rw-r--r-- | libhb/decavcodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/decavcodec.c b/libhb/decavcodec.c index 0d5e44929..39fd4c5ea 100644 --- a/libhb/decavcodec.c +++ b/libhb/decavcodec.c @@ -195,7 +195,7 @@ static int decavcodecaInit( hb_work_object_t * w, hb_job_t * job ) pv->resample = hb_audio_resample_init(AV_SAMPLE_FMT_FLT, layout, mode); if (pv->resample == NULL) { - hb_log("decavcodecaInit: hb_audio_resample_init() failed"); + hb_error("decavcodecaInit: hb_audio_resample_init() failed"); return 1; } } |