summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorZdenek Kabelac <kabi@informatics.muni.cz>2004-10-06 08:50:46 +0000
committerZdenek Kabelac <kabi@informatics.muni.cz>2004-10-06 08:50:46 +0000
commit7fea94ce4af2c97cbfc0a279fe7a755f9185f343 (patch)
tree3a57473464a85cbe464d056ae5db963c17e19abd /ffplay.c
parenta319bbac5c1b887894a4edea8bb0016161e239a2 (diff)
* fixing a few of gcc 'clean-code' warnings
Originally committed as revision 3563 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffplay.c b/ffplay.c
index bc0998b226..b89e40570a 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -113,7 +113,7 @@ typedef struct VideoState {
/* samples output by the codec. we reserve more space for avsync
compensation */
uint8_t audio_buf[(AVCODEC_MAX_AUDIO_FRAME_SIZE * 3) / 2];
- int audio_buf_size; /* in bytes */
+ unsigned int audio_buf_size; /* in bytes */
int audio_buf_index; /* in bytes */
AVPacket audio_pkt;
uint8_t *audio_pkt_data;