changeset 5865:80c95562a705 libavformat

Reindent
author mstorsjo
date Mon, 22 Mar 2010 15:07:36 +0000
parents 0ff0826b6c3d
children 38b67ae3f07d
files rtsp.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/rtsp.c	Mon Mar 22 15:07:05 2010 +0000
+++ b/rtsp.c	Mon Mar 22 15:07:36 2010 +0000
@@ -589,7 +589,7 @@
                         url_close_dyn_buf(rtpctx->pb, &ptr);
                         av_free(ptr);
                     } else {
-                    url_fclose(rtpctx->pb);
+                        url_fclose(rtpctx->pb);
                     }
                     av_metadata_free(&rtpctx->streams[0]->metadata);
                     av_metadata_free(&rtpctx->metadata);
@@ -651,14 +651,14 @@
     rtpctx->streams[0]->codec = st->codec;
 
     if (handle) {
-    url_fdopen(&rtpctx->pb, handle);
+        url_fdopen(&rtpctx->pb, handle);
     } else
         url_open_dyn_packet_buf(&rtpctx->pb, RTSP_TCP_MAX_PACKET_SIZE);
     ret = av_write_header(rtpctx);
 
     if (ret) {
         if (handle) {
-        url_fclose(rtpctx->pb);
+            url_fclose(rtpctx->pb);
         } else {
             uint8_t *ptr;
             url_close_dyn_buf(rtpctx->pb, &ptr);