diff options
author | jbrjake <[email protected]> | 2007-08-01 17:13:36 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2007-08-01 17:13:36 +0000 |
commit | 8cb0b130a99d34794a9223553478ca23830f9f2c (patch) | |
tree | e7366073daaff12f0fb74c38493bb04b41034371 /libhb/deinterlace.c | |
parent | 6bf190d7481c23c148c5fa737a6174f62a4fcf3c (diff) |
Implements libswscale in HandBrake, giving it Lanczos scaling! This major enhancement comes to us courtesy of superdump, who deserves much praise and glory. To make this work, ffmpeg's been updated to a recent revision.
Darwin contrib binary pack ++ to 0016. Includes fresh ffmpeg and libswscale as well as the recently-patched libmp4v2.
I've also added the configure option --disable-sdl to libmpeg2 in the contrib/Jamfile, because without it jam always fails for me and I'm sick of adding it in every time. Hopefully this doesn't break anything for anyone, but if it does it's just a one-word change.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@778 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/deinterlace.c')
-rw-r--r-- | libhb/deinterlace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/deinterlace.c b/libhb/deinterlace.c index fd842064f..1da50d097 100644 --- a/libhb/deinterlace.c +++ b/libhb/deinterlace.c @@ -394,8 +394,8 @@ hb_filter_private_t * hb_deinterlace_init( int pix_fmt, /* Allocate mcdeint specific buffers */
if( pv->mcdeint_mode >= 0 )
{
- avcodec_init();
- register_avcodec( &snow_encoder );
+ avcodec_init();
+ avcodec_register_all();
AVCodec * enc = avcodec_find_encoder( CODEC_ID_SNOW );
|