Commit c6938f66 authored by diego's avatar diego

Remove some unused variables, fixes the warnings:

libavformat/rtmppkt.c:350: warning: unused variable ‘i’
libavformat/rtmppkt.c:349: warning: unused variable ‘base’


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20917 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 925bcf8b
...@@ -346,8 +346,7 @@ static const char* rtmp_packet_type(int type) ...@@ -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) static void ff_amf_tag_contents(void *ctx, const uint8_t *data, const uint8_t *data_end)
{ {
const uint8_t *base = data; int size;
int i, size;
char buf[1024]; char buf[1024];
if (data >= data_end) 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