diff options
author | Martin Storsjö <martin@martin.st> | 2012-04-06 23:07:12 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-04-08 12:04:22 +0300 |
commit | 456001486ee8fe1cd906e497b603f98159191175 (patch) | |
tree | 674e9168fc98d378a6bc4c2278f6a61543a73906 /libavformat/rtpdec_amr.c | |
parent | d293e3464db647e72fffad50a678eca89546b65f (diff) | |
download | ffmpeg-456001486ee8fe1cd906e497b603f98159191175.tar.gz |
rtsp: Don't expose the MS-RTSP RTX data stream to the caller
This avoids exposing a dummy AVStream which won't get any data
and which will make avformat_find_stream_info wait for info about
this stream.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtpdec_amr.c')
-rw-r--r-- | libavformat/rtpdec_amr.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/rtpdec_amr.c b/libavformat/rtpdec_amr.c index 9f5ab26aa9..b2e3d6042e 100644 --- a/libavformat/rtpdec_amr.c +++ b/libavformat/rtpdec_amr.c @@ -169,6 +169,9 @@ static int amr_parse_sdp_line(AVFormatContext *s, int st_index, const char *p; int ret; + if (st_index < 0) + return 0; + /* Parse an fmtp line this one: * a=fmtp:97 octet-align=1; interleaving=0 * That is, a normal fmtp: line followed by semicolon & space |