]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/rtsp.c
lavf: Fix assignments in if()
[ffmpeg] / libavformat / rtsp.c
index ec343d6070a5e94a9ad8a6df413c7374bf4bb9d9..05058d014ab696607c35c135374d38d1d92abbad 100644 (file)
@@ -243,10 +243,6 @@ static int sdp_parse_rtpmap(AVFormatContext *s,
             i = atoi(buf);
             if (i > 0)
                 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",
                codec->sample_rate);