From b41e92fff1731fad2595143b7c3f5f79aeaf89f7 Mon Sep 17 00:00:00 2001 From: jstebbins Date: Tue, 12 Oct 2010 17:16:19 +0000 Subject: bump ffmpeg from 25082 to 25374 fixes h264 decoding issue git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3599 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- libhb/render.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libhb/render.c') diff --git a/libhb/render.c b/libhb/render.c index 98bc7fea3..8c7e9a2d8 100644 --- a/libhb/render.c +++ b/libhb/render.c @@ -721,11 +721,11 @@ int renderInit( hb_work_object_t * w, hb_job_t * job ) if( job->crop[0] || job->crop[1] || job->crop[2] || job->crop[3] || job->width != title->width || job->height != title->height ) { - pv->context = sws_getContext(title->width - (job->crop[2] + job->crop[3]), + pv->context = hb_sws_get_context(title->width - (job->crop[2] + job->crop[3]), title->height - (job->crop[0] + job->crop[1]), PIX_FMT_YUV420P, job->width, job->height, PIX_FMT_YUV420P, - swsflags, NULL, NULL, NULL); + swsflags); } /* Setup FIFO queue for subtitle cache */ -- cgit v1.2.3