[FFmpeg-cvslog] lavc/hls: Cosmetics: Fix indentation for free_segment_list
Jun Zhao
git at videolan.org
Sat Jan 19 04:16:03 EET 2019
ffmpeg | branch: master | Jun Zhao <mypopydev at gmail.com> | Mon Jan 14 23:42:09 2019 +0800| [32fb83e4318845a7f44f7bed02d5963b9e81804e] | committer: Jun Zhao
lavc/hls: Cosmetics: Fix indentation for free_segment_list
Commit 673d8cfd518 missed the indent
Signed-off-by: Jun Zhao <mypopydev at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=32fb83e4318845a7f44f7bed02d5963b9e81804e
---
libavformat/hls.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavformat/hls.c b/libavformat/hls.c
index 63e1abe789..8975a87153 100644
--- a/libavformat/hls.c
+++ b/libavformat/hls.c
@@ -223,9 +223,9 @@ static void free_segment_dynarray(struct segment **segments, int n_segments)
static void free_segment_list(struct playlist *pls)
{
- free_segment_dynarray(pls->segments, pls->n_segments);
- av_freep(&pls->segments);
- pls->n_segments = 0;
+ free_segment_dynarray(pls->segments, pls->n_segments);
+ av_freep(&pls->segments);
+ pls->n_segments = 0;
}
static void free_init_section_list(struct playlist *pls)
More information about the ffmpeg-cvslog
mailing list