Commit 9041e250 authored by michael's avatar michael

10l (vismv fix)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@2949 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7e31591b
......@@ -1167,10 +1167,11 @@ static int stream_component_open(VideoState *is, int stream_index)
}
codec = avcodec_find_decoder(enc->codec_id);
enc->debug_mv = debug_mv;
enc->debug = debug;
if (!codec ||
avcodec_open(enc, codec) < 0)
return -1;
enc->debug = debug;
#if defined(HAVE_PTHREADS) || defined(HAVE_W32THREADS)
if(thread_count>1)
avcodec_thread_init(enc, thread_count);
......@@ -1204,7 +1205,6 @@ static int stream_component_open(VideoState *is, int stream_index)
packet_queue_init(&is->videoq);
is->video_tid = SDL_CreateThread(video_thread, is);
enc->debug_mv = debug_mv;
break;
default:
break;
......
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