diff options
author | Martin Storsjö <martin@martin.st> | 2013-01-11 14:47:10 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-01-12 00:02:04 +0200 |
commit | 3900d53fb1b9ce8f13b63a4a4fa8a07829f4c369 (patch) | |
tree | 9638b68be73d484299fe312dd8c7c55d4d375b37 | |
parent | c44784c9bb9d0ddf5d39d0dfa640816a57b8f457 (diff) | |
download | ffmpeg-3900d53fb1b9ce8f13b63a4a4fa8a07829f4c369.tar.gz |
rtsp: Remove references to weirdly named variables in other files
One of them is renamed now, but mentioning it by name serves
no purpose here. The other table mentioned ceased to exist
under that name in 4934884a1 in 2006.
Signed-off-by: Martin Storsjö <martin@martin.st>
-rw-r--r-- | libavformat/rtsp.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 88e0cbf2db..ec343d6070 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -200,8 +200,7 @@ static int sdp_parse_rtpmap(AVFormatContext *s, AVCodec *c; const char *c_name; - /* Loop into AVRtpDynamicPayloadTypes[] and AVRtpPayloadTypes[] and - * see if we can handle this kind of payload. + /* See if we can handle this kind of payload. * The space should normally not be there but some Real streams or * particular servers ("RealServer Version 6.1.3.970", see issue 1658) * have a trailing space. */ @@ -209,7 +208,6 @@ static int sdp_parse_rtpmap(AVFormatContext *s, if (payload_type < RTP_PT_PRIVATE) { /* We are in a standard case * (from http://www.iana.org/assignments/rtp-parameters). */ - /* search into AVRtpPayloadTypes[] */ codec->codec_id = ff_rtp_codec_id(buf, codec->codec_type); } |