1. 23 Dec, 2016 6 commits
  2. 22 Dec, 2016 12 commits
  3. 21 Dec, 2016 6 commits
  4. 20 Dec, 2016 3 commits
  5. 19 Dec, 2016 3 commits
  6. 18 Dec, 2016 4 commits
  7. 17 Dec, 2016 5 commits
  8. 16 Dec, 2016 1 commit
    • Mark Harris's avatar
      avformat/wavdec: Eliminate goto for clang -O0 DCE · a5cf600c
      Mark Harris authored
      Clang is not able to eliminate the reference to ff_spdif_probe() when
      there is a goto target in the same block and optimization is disabled.
      
      This fixes the following build failure on OS X:
        ./configure --disable-everything --disable-doc \
          --enable-decoder=pcm_s16le --enable-demuxer=wav \
          --enable-protocol=file --disable-optimizations --cc=clang
        make
        ...
        Undefined symbols for architecture x86_64:
          "_ff_spdif_probe", referenced from:
              _set_spdif in libavformat.a(wavdec.o)
        ld: symbol(s) not found for architecture x86_64
      Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
      a5cf600c