# HG changeset patch # User takis # Date 1163090433 0 # Node ID 171e768324cd6a4a9635b512593506b5f98182a8 # Parent 1e86218440405b39e04ca946708ea0a80fcb10ce Remove the H264Context parameter from decode_init_vlc() as it is not being used. diff -r 1e8621844040 -r 171e768324cd h264.c --- a/h264.c Thu Nov 09 11:37:30 2006 +0000 +++ b/h264.c Thu Nov 09 16:40:33 2006 +0000 @@ -3149,7 +3149,7 @@ prefetch_motion(h, 1); } -static void decode_init_vlc(H264Context *h){ +static void decode_init_vlc(){ static int done = 0; if (!done) { @@ -3406,7 +3406,7 @@ s->low_delay= 1; avctx->pix_fmt= PIX_FMT_YUV420P; - decode_init_vlc(h); + decode_init_vlc(); if(avctx->extradata_size > 0 && avctx->extradata && *(char *)avctx->extradata == 1){