diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2008-10-04 04:19:46 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2008-10-04 04:19:46 +0000 |
commit | 5c918b27754edcf806da6f46b9706150f72a2576 (patch) | |
tree | bba92940af5f81ea8e345c54ef1449ca39ea1f33 | |
parent | accc248f28cc71bd5f97c25cb4585dd6ff611242 (diff) | |
download | ffmpeg-5c918b27754edcf806da6f46b9706150f72a2576.tar.gz |
Reindent after r15544.
Originally committed as revision 15545 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/rtsp.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index d304d92d09..f7596d2a34 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -877,7 +877,7 @@ static void rtsp_close_streams(RTSPState *rt) if (rt->transport == RTSP_TRANSPORT_RDT) ff_rdt_parse_close(rtsp_st->tx_ctx); else - rtp_parse_close(rtsp_st->tx_ctx); + rtp_parse_close(rtsp_st->tx_ctx); } if (rtsp_st->rtp_handle) url_close(rtsp_st->rtp_handle); @@ -905,7 +905,9 @@ rtsp_open_transport_ctx(AVFormatContext *s, RTSPStream *rtsp_st) rtsp_st->dynamic_protocol_context, rtsp_st->dynamic_handler); else - rtsp_st->tx_ctx = rtp_parse_open(s, st, rtsp_st->rtp_handle, rtsp_st->sdp_payload_type, &rtsp_st->rtp_payload_data); + rtsp_st->tx_ctx = rtp_parse_open(s, st, rtsp_st->rtp_handle, + rtsp_st->sdp_payload_type, + &rtsp_st->rtp_payload_data); if (!rtsp_st->tx_ctx) { return AVERROR(ENOMEM); |