[FFmpeg-devel] [PATCH 1/2] ffplay: Fix got_frame type.
Michael Niedermayer
michaelni at gmx.at
Wed Dec 14 00:38:22 CET 2011
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
---
ffplay.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/ffplay.c b/ffplay.c
index e391754..29b1a48 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -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;
--
1.7.5.4
More information about the ffmpeg-devel
mailing list