diff mbox

[FFmpeg-devel,4/8] avformat/dashdec: reindent code for previous commit

Message ID 20180903100600.85023-4-lq@chinaffmpeg.org
State Accepted
Commit a222798ef34f1e291adc8086781946d1c1aff56d
Headers show

Commit Message

Liu Steven Sept. 3, 2018, 10:05 a.m. UTC
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
---
 libavformat/dashdec.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c
index 9d69045d37..14a54a02cf 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;