1. 21 Jul, 2018 4 commits
  2. 20 Jul, 2018 8 commits
  3. 19 Jul, 2018 5 commits
  4. 18 Jul, 2018 5 commits
  5. 16 Jul, 2018 2 commits
  6. 15 Jul, 2018 7 commits
  7. 14 Jul, 2018 4 commits
  8. 13 Jul, 2018 5 commits
    • Marton Balint's avatar
      avformat/mxfdec: only return stream indexes which have a corresponding track · e5ff2c0c
      Marton Balint authored
      Without this check some crafted files might crash because a packet might be
      demuxed which have no corresponding mxf track.
      Signed-off-by: 's avatarMarton Balint <cus@passwd.hu>
      e5ff2c0c
    • Marton Balint's avatar
      avcodec/internal: increase FF_SANE_NB_CHANNELS to 256 · 3e0f3be2
      Marton Balint authored
      This was reduced from 128 in libav commit
      192f1984, but since we support unknown channel
      layouts, we can increase this limit.
      
      Fixes ticket #6332.
      Signed-off-by: 's avatarMarton Balint <cus@passwd.hu>
      3e0f3be2
    • Marton Balint's avatar
      avcodec/utils: report insane channel count errors · 5982078e
      Marton Balint authored
      More than 64 is not *that* insane, so let's report the error at least.
      Signed-off-by: 's avatarMarton Balint <cus@passwd.hu>
      5982078e
    • Marton Balint's avatar
      ffplay: add support for various YUV conversion modes · 85bfcc46
      Marton Balint authored
      SDL from version 2.0.8 has support for full range YUV and specifying
      BT601/BT709 color space for YUV->RGB conversion.
      Signed-off-by: 's avatarMarton Balint <cus@passwd.hu>
      85bfcc46
    • Carl Eugen Hoyos's avatar
      lavc/aarch64/h264dsp_init_aarch64: Fix weight function prototypes. · 0576ef46
      Carl Eugen Hoyos authored
      Fixes the following warnings:
      libavcodec/aarch64/h264dsp_init_aarch64.c: In function ‘ff_h264dsp_init_aarch64’:
      libavcodec/aarch64/h264dsp_init_aarch64.c:84:38: warning: assignment from incompatible pointer type [enabled by default]
               c->weight_h264_pixels_tab[0] = ff_weight_h264_pixels_16_neon;
                                            ^
      libavcodec/aarch64/h264dsp_init_aarch64.c:85:38: warning: assignment from incompatible pointer type [enabled by default]
               c->weight_h264_pixels_tab[1] = ff_weight_h264_pixels_8_neon;
                                            ^
      libavcodec/aarch64/h264dsp_init_aarch64.c:86:38: warning: assignment from incompatible pointer type [enabled by default]
               c->weight_h264_pixels_tab[2] = ff_weight_h264_pixels_4_neon;
                                            ^
      libavcodec/aarch64/h264dsp_init_aarch64.c:88:40: warning: assignment from incompatible pointer type [enabled by default]
               c->biweight_h264_pixels_tab[0] = ff_biweight_h264_pixels_16_neon;
                                              ^
      libavcodec/aarch64/h264dsp_init_aarch64.c:89:40: warning: assignment from incompatible pointer type [enabled by default]
               c->biweight_h264_pixels_tab[1] = ff_biweight_h264_pixels_8_neon;
                                              ^
      libavcodec/aarch64/h264dsp_init_aarch64.c:90:40: warning: assignment from incompatible pointer type [enabled by default]
               c->biweight_h264_pixels_tab[2] = ff_biweight_h264_pixels_4_neon;
                                              ^
      0576ef46