diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2004-10-06 08:50:46 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2004-10-06 08:50:46 +0000 |
commit | 7fea94ce4af2c97cbfc0a279fe7a755f9185f343 (patch) | |
tree | 3a57473464a85cbe464d056ae5db963c17e19abd /ffplay.c | |
parent | a319bbac5c1b887894a4edea8bb0016161e239a2 (diff) | |
download | ffmpeg-7fea94ce4af2c97cbfc0a279fe7a755f9185f343.tar.gz |
* 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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |