diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-12-14 00:38:22 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2011-12-14 21:21:22 +0100 |
commit | a5a1e3cb8a5f554818c2e491ab4d2cad833a4556 (patch) | |
tree | f06236cc4fcc135ff57c3b02d9c53ce0c0c61027 | |
parent | 91a3ea671adda0039c6c221f158a88391416b574 (diff) | |
download | ffmpeg-a5a1e3cb8a5f554818c2e491ab4d2cad833a4556.tar.gz |
ffplay: Fix got_frame type.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Marton Balint <cus@passwd.hu>
-rw-r--r-- | ffplay.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2043,7 +2043,8 @@ static int audio_decode_frame(VideoState *is, double *pts_ptr) AVPacket *pkt = &is->audio_pkt; AVCodecContext *dec= is->audio_st->codec; 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; int new_packet = 0; int flush_complete = 0; |