Commit e730c3a2 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '54cb096e'

* commit '54cb096e':
  rtsp: Remove an outdated comment
  rtsp: Remove references to weirdly named variables in other files
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents dda2d297 54cb096e
...@@ -201,8 +201,7 @@ static int sdp_parse_rtpmap(AVFormatContext *s, ...@@ -201,8 +201,7 @@ static int sdp_parse_rtpmap(AVFormatContext *s,
AVCodec *c; AVCodec *c;
const char *c_name; 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 * The space should normally not be there but some Real streams or
* particular servers ("RealServer Version 6.1.3.970", see issue 1658) * particular servers ("RealServer Version 6.1.3.970", see issue 1658)
* have a trailing space. */ * have a trailing space. */
...@@ -210,7 +209,6 @@ static int sdp_parse_rtpmap(AVFormatContext *s, ...@@ -210,7 +209,6 @@ static int sdp_parse_rtpmap(AVFormatContext *s,
if (payload_type < RTP_PT_PRIVATE) { if (payload_type < RTP_PT_PRIVATE) {
/* We are in a standard case /* We are in a standard case
* (from http://www.iana.org/assignments/rtp-parameters). */ * (from http://www.iana.org/assignments/rtp-parameters). */
/* search into AVRtpPayloadTypes[] */
codec->codec_id = ff_rtp_codec_id(buf, codec->codec_type); codec->codec_id = ff_rtp_codec_id(buf, codec->codec_type);
} }
...@@ -246,10 +244,6 @@ static int sdp_parse_rtpmap(AVFormatContext *s, ...@@ -246,10 +244,6 @@ static int sdp_parse_rtpmap(AVFormatContext *s,
i = atoi(buf); i = atoi(buf);
if (i > 0) if (i > 0)
codec->channels = i; codec->channels = i;
// TODO: there is a bug here; if it is a mono stream, and
// less than 22000Hz, faad upconverts to stereo and twice
// the frequency. No problem, but the sample rate is being
// set here by the sdp line. Patch on its way. (rdm)
} }
av_log(s, AV_LOG_DEBUG, "audio samplerate set to: %i\n", av_log(s, AV_LOG_DEBUG, "audio samplerate set to: %i\n",
codec->sample_rate); codec->sample_rate);
......
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