diff options
author | Steven Liu <lq@chinaffmpeg.org> | 2019-09-14 12:54:21 +0800 |
---|---|---|
committer | Steven Liu <lq@chinaffmpeg.org> | 2019-09-14 12:54:21 +0800 |
commit | 2e82b50bce1888bfc3269fec7f3316543e8c0a39 (patch) | |
tree | 1a5dfc514876082d9a861999a10c69d8abbaef3a | |
parent | 0c5726a332734d18821e03779f94d1af8e251641 (diff) | |
download | ffmpeg-2e82b50bce1888bfc3269fec7f3316543e8c0a39.tar.gz |
avformat/dashdec: reindent code at parse_manifest
-rw-r--r-- | libavformat/dashdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c index 4f725ba09a..8c0a9b0102 100644 --- a/libavformat/dashdec.c +++ b/libavformat/dashdec.c @@ -1265,7 +1265,7 @@ static int parse_manifest(AVFormatContext *s, const char *url, AVIOContext *in) } else { LIBXML_TEST_VERSION - doc = xmlReadMemory(buffer, filesize, c->base_url, NULL, 0); + doc = xmlReadMemory(buffer, filesize, c->base_url, NULL, 0); root_element = xmlDocGetRootElement(doc); node = root_element; |