Commit a5a1e3cb authored by Michael Niedermayer's avatar Michael Niedermayer Committed by Marton Balint

ffplay: Fix got_frame type.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
Signed-off-by: 's avatarMarton Balint <cus@passwd.hu>
parent 91a3ea67
...@@ -2043,7 +2043,8 @@ static int audio_decode_frame(VideoState *is, double *pts_ptr) ...@@ -2043,7 +2043,8 @@ static int audio_decode_frame(VideoState *is, double *pts_ptr)
AVPacket *pkt = &is->audio_pkt; AVPacket *pkt = &is->audio_pkt;
AVCodecContext *dec= is->audio_st->codec; AVCodecContext *dec= is->audio_st->codec;
int len1, len2, data_size, resampled_data_size; int len1, len2, data_size, resampled_data_size;
int64_t dec_channel_layout, got_frame; int64_t dec_channel_layout;
int got_frame;
double pts; double pts;
int new_packet = 0; int new_packet = 0;
int flush_complete = 0; int flush_complete = 0;
......
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