diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-12-03 17:11:48 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-12-03 17:11:48 +0000 |
commit | 2784ede40aa76e89ec46a323631040f6f23f10aa (patch) | |
tree | f9e220335cf45601cb6ef59c5b3f19d1257dc79d /libavformat/rtmpproto.c | |
parent | 6a63e83afcfd07b09dd3ffedba1fe65d972e5ac4 (diff) | |
download | ffmpeg-2784ede40aa76e89ec46a323631040f6f23f10aa.tar.gz |
Remove duplicating variable
Originally committed as revision 20718 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtmpproto.c')
-rw-r--r-- | libavformat/rtmpproto.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c index 8a54a8dd2e..e8f5c2df9f 100644 --- a/libavformat/rtmpproto.c +++ b/libavformat/rtmpproto.c @@ -442,7 +442,6 @@ static int rtmp_parse_result(URLContext *s, RTMPContext *rt, RTMPPacket *pkt) } else if (!memcmp(pkt->data, "\002\000\010onStatus", 11)) { const uint8_t* ptr = pkt->data + 11; uint8_t tmpstr[256]; - int t; for (i = 0; i < 2; i++) { t = ff_amf_tag_size(ptr, data_end); |