mirror of https://git.ffmpeg.org/ffmpeg.git
fftools/ffmpeg: Put the variable declaration at uppper for block.
move the variable declaration at start of upper for block and remove the redundant brace. Signed-off-by: Jun Zhao <mypopydev@gmail.com>
This commit is contained in:
parent
81f2a9f136
commit
3eccf5be92
|
@ -1196,6 +1196,8 @@ static void do_video_out(OutputFile *of,
|
||||||
/* duplicates frame if needed */
|
/* duplicates frame if needed */
|
||||||
for (i = 0; i < nb_frames; i++) {
|
for (i = 0; i < nb_frames; i++) {
|
||||||
AVFrame *in_picture;
|
AVFrame *in_picture;
|
||||||
|
int forced_keyframe = 0;
|
||||||
|
double pts_time;
|
||||||
av_init_packet(&pkt);
|
av_init_packet(&pkt);
|
||||||
pkt.data = NULL;
|
pkt.data = NULL;
|
||||||
pkt.size = 0;
|
pkt.size = 0;
|
||||||
|
@ -1213,10 +1215,6 @@ static void do_video_out(OutputFile *of,
|
||||||
if (!check_recording_time(ost))
|
if (!check_recording_time(ost))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
{
|
|
||||||
int forced_keyframe = 0;
|
|
||||||
double pts_time;
|
|
||||||
|
|
||||||
if (enc->flags & (AV_CODEC_FLAG_INTERLACED_DCT | AV_CODEC_FLAG_INTERLACED_ME) &&
|
if (enc->flags & (AV_CODEC_FLAG_INTERLACED_DCT | AV_CODEC_FLAG_INTERLACED_ME) &&
|
||||||
ost->top_field_first >= 0)
|
ost->top_field_first >= 0)
|
||||||
in_picture->top_field_first = !!ost->top_field_first;
|
in_picture->top_field_first = !!ost->top_field_first;
|
||||||
|
@ -1324,7 +1322,6 @@ static void do_video_out(OutputFile *of,
|
||||||
fprintf(ost->logfile, "%s", enc->stats_out);
|
fprintf(ost->logfile, "%s", enc->stats_out);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
ost->sync_opts++;
|
ost->sync_opts++;
|
||||||
/*
|
/*
|
||||||
* For video, number of frames in == number of packets out.
|
* For video, number of frames in == number of packets out.
|
||||||
|
|
Loading…
Reference in New Issue