diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2009-01-09 23:36:39 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2009-01-09 23:36:39 +0000 |
commit | ff16f551cfb8fd36ba505f7bc08d04866fa856cb (patch) | |
tree | 4028fe42941a839ceee13e8dae606aba89e4f47e | |
parent | 83d14c85da70963a73f40e818fbbe474deff44d2 (diff) | |
download | ffmpeg-ff16f551cfb8fd36ba505f7bc08d04866fa856cb.tar.gz |
Reindent after r16509.
Originally committed as revision 16510 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/rtsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index e4d3128556..1bccd28735 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -446,8 +446,8 @@ static void sdp_parse_line(AVFormatContext *s, SDPParseState *s1, get_word(buf1, sizeof(buf1), &p); payload_type = atoi(buf1); st = s->streams[s->nb_streams - 1]; - rtsp_st = st->priv_data; - sdp_parse_rtpmap(st->codec, rtsp_st, payload_type, p); + rtsp_st = st->priv_data; + sdp_parse_rtpmap(st->codec, rtsp_st, payload_type, p); } else if (av_strstart(p, "fmtp:", &p)) { /* NOTE: fmtp is only supported AFTER the 'a=rtpmap:xxx' tag */ get_word(buf1, sizeof(buf1), &p); |