1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

fftools/ffmpeg: merge variable declaration and initialization

This commit is contained in:
Anton Khirnov
2021-12-16 11:59:21 +01:00
parent 9acce2afcf
commit 0c914ebd53

View File

@@ -837,7 +837,7 @@ static double psnr(double d)
static void do_video_stats(OutputStream *ost, const AVPacket *pkt) static void do_video_stats(OutputStream *ost, const AVPacket *pkt)
{ {
AVCodecContext *enc; AVCodecContext *enc = ost->enc_ctx;
int frame_number; int frame_number;
double ti1, bitrate, avg_bitrate; double ti1, bitrate, avg_bitrate;
@@ -850,7 +850,6 @@ static void do_video_stats(OutputStream *ost, const AVPacket *pkt)
} }
} }
enc = ost->enc_ctx;
frame_number = ost->packets_encoded; frame_number = ost->packets_encoded;
if (vstats_version <= 1) { if (vstats_version <= 1) {
fprintf(vstats_file, "frame= %5d q= %2.1f ", frame_number, fprintf(vstats_file, "frame= %5d q= %2.1f ", frame_number,