mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-24 16:22:51 +00:00
Remove unused variables, fixes the following warnings:
siff.c:187: warning: unused variable 'snddata' siff.c:186: warning: unused variable 'size2' Originally committed as revision 10884 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
51844e6cd2
commit
1d5fab9b33
@ -183,8 +183,7 @@ static int siff_read_header(AVFormatContext *s, AVFormatParameters *ap)
|
|||||||
static int siff_read_packet(AVFormatContext *s, AVPacket *pkt)
|
static int siff_read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||||
{
|
{
|
||||||
SIFFContext *c = s->priv_data;
|
SIFFContext *c = s->priv_data;
|
||||||
int size, size2;
|
int size;
|
||||||
uint8_t *snddata;
|
|
||||||
|
|
||||||
if (c->has_video){
|
if (c->has_video){
|
||||||
if (c->cur_frame >= c->frames)
|
if (c->cur_frame >= c->frames)
|
||||||
|
Loading…
Reference in New Issue
Block a user