summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorSteven Liu <lq@chinaffmpeg.org>2018-09-05 14:17:03 +0800
committerSteven Liu <lq@chinaffmpeg.org>2018-09-05 14:17:03 +0800
commita222798ef34f1e291adc8086781946d1c1aff56d (patch)
tree0bdb50a7cf1b4f22097831ce79417e3f37ab3f6b /libavformat
parent28578e61431b8cb9783d80f2ff5aa0cd69ae35b9 (diff)
avformat/dashdec: reindent code for previous commit
Signed-off-by: Steven Liu <lq@onvideo.cn>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/dashdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c
index 6aa4d53ff0..bcb19f49a2 100644
--- a/libavformat/dashdec.c
+++ b/libavformat/dashdec.c
@@ -1577,7 +1577,7 @@ static int read_from_url(struct representation *pls, struct fragment *seg,
if (seg->size >= 0)
buf_size = FFMIN(buf_size, pls->cur_seg_size - pls->cur_seg_offset);
- ret = avio_read(pls->input, buf, buf_size);
+ ret = avio_read(pls->input, buf, buf_size);
if (ret > 0)
pls->cur_seg_offset += ret;