Commit c2212338 authored by Panagiotis Issaris's avatar Panagiotis Issaris

Remove the H264Context parameter from decode_init_vlc() as it is not being used.

Originally committed as revision 6955 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7964ed71
......@@ -3149,7 +3149,7 @@ static void hl_motion(H264Context *h, uint8_t *dest_y, uint8_t *dest_cb, uint8_t
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 @@ static int decode_init(AVCodecContext *avctx){
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){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment