mirror of https://git.ffmpeg.org/ffmpeg.git
Remove some unused variables, fixes the warnings:
libavformat/rtmppkt.c:350: warning: unused variable ‘i’ libavformat/rtmppkt.c:349: warning: unused variable ‘base’ Originally committed as revision 20917 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
76faff6ef2
commit
251822897f
|
@ -346,8 +346,7 @@ static const char* rtmp_packet_type(int type)
|
|||
|
||||
static void ff_amf_tag_contents(void *ctx, const uint8_t *data, const uint8_t *data_end)
|
||||
{
|
||||
const uint8_t *base = data;
|
||||
int i, size;
|
||||
int size;
|
||||
char buf[1024];
|
||||
|
||||
if (data >= data_end)
|
||||
|
|
Loading…
Reference in New Issue