summaryrefslogtreecommitdiffstats
path: root/libhb/render.c
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2010-10-12 17:16:19 +0000
committerjstebbins <[email protected]>2010-10-12 17:16:19 +0000
commitb41e92fff1731fad2595143b7c3f5f79aeaf89f7 (patch)
treebe48a3992a6ddbd463313a25981c541573965ad5 /libhb/render.c
parentab1f5c7298d8f6d0ef7ee949f41d3053035ee442 (diff)
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
Diffstat (limited to 'libhb/render.c')
-rw-r--r--libhb/render.c4
1 files changed, 2 insertions, 2 deletions
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 */