1. 20 Nov, 2018 3 commits
  2. 19 Nov, 2018 8 commits
  3. 18 Nov, 2018 25 commits
  4. 17 Nov, 2018 3 commits
  5. 16 Nov, 2018 1 commit
    • Carl Eugen Hoyos's avatar
      lavf/hlsenc: Do not mix declarations and code. · fc94e970
      Carl Eugen Hoyos authored
      Fixes the following warnings:
      libavformat/hlsenc.c: In function 'hls_write_trailer':
      libavformat/hlsenc.c:2364:17: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
                       uint8_t *buffer = NULL;
                       ^~~~~~~
      libavformat/hlsenc.c:2372:17: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
                       int byterange_mode = (hls->flags & HLS_SINGLE_FILE) || (hls->max_seg_size > 0);
                       ^~~
      libavformat/hlsenc.c:2379:13: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
                   int range_length = 0;
                   ^~~
      fc94e970