X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fvideo_decoder%2Fvideo_decoder.c;h=769aaa21169785d60d7b04d63c6e08cad47a4a4f;hb=440f9992ee947ea5fd0debbf35fdd1011c6404b3;hp=22e418cf4b35de07897bb8d9684c70fec5f2e3ce;hpb=1ffe943ec5e34e24199546b386114bb67586855a;p=vlc diff --git a/src/video_decoder/video_decoder.c b/src/video_decoder/video_decoder.c index 22e418cf4b..769aaa2116 100644 --- a/src/video_decoder/video_decoder.c +++ b/src/video_decoder/video_decoder.c @@ -2,7 +2,7 @@ * video_decoder.c : video decoder thread ***************************************************************************** * Copyright (C) 1999, 2000 VideoLAN - * $Id: video_decoder.c,v 1.49 2001/05/06 04:32:02 sam Exp $ + * $Id: video_decoder.c,v 1.50 2001/05/30 17:03:12 sam Exp $ * * Authors: Christophe Massiot * Gaƫl Hendryckx @@ -153,11 +153,11 @@ int vdec_InitThread( vdec_thread_t *p_vdec ) { intf_DbgMsg("vdec debug: initializing video decoder thread %p", p_vdec); - p_vdec->pf_vdec_init = p_vdec->p_vpar->pf_vdec_init; + p_vdec->pf_decode_init = p_vdec->p_vpar->pf_decode_init; p_vdec->pf_decode_mb_c = p_vdec->p_vpar->pf_decode_mb_c; p_vdec->pf_decode_mb_bw = p_vdec->p_vpar->pf_decode_mb_bw; - p_vdec->pf_vdec_init( p_vdec ); + p_vdec->pf_decode_init( p_vdec ); #ifdef VDEC_SMP /* Re-nice ourself */