Commit c4e48672 authored by diego's avatar diego

Move variable declaration, fixes the warning:

ffplay.c:1703: warning: unused variable `pos'


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22611 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4a6a4e1d
......@@ -1700,11 +1700,12 @@ static int video_thread(void *arg)
{
VideoState *is = arg;
AVFrame *frame= avcodec_alloc_frame();
int64_t pts_int, pos;
int64_t pts_int;
double pts;
int ret;
#if CONFIG_AVFILTER
int64_t pos;
AVFilterContext *filt_src = NULL, *filt_out = NULL;
AVFilterGraph *graph = av_mallocz(sizeof(AVFilterGraph));
graph->scale_sws_opts = av_strdup("sws_flags=bilinear");
......
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