Commit 25182289 authored by Diego Biurrun's avatar Diego Biurrun

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
parent 76faff6e
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment