1. 08 Mar, 2014 1 commit
  2. 23 Jan, 2014 1 commit
  3. 15 Jan, 2014 1 commit
  4. 05 Jan, 2014 1 commit
  5. 23 Dec, 2013 1 commit
  6. 23 Nov, 2013 1 commit
  7. 15 Nov, 2013 3 commits
  8. 29 Oct, 2013 1 commit
  9. 21 Sep, 2013 1 commit
  10. 20 Sep, 2013 1 commit
  11. 18 Sep, 2013 1 commit
  12. 15 Sep, 2013 1 commit
  13. 12 Sep, 2013 1 commit
  14. 11 Sep, 2013 3 commits
  15. 10 Sep, 2013 1 commit
  16. 09 Sep, 2013 2 commits
  17. 08 Sep, 2013 2 commits
    • Clément Bœsch's avatar
      avformat/subtitles: add a next line jumper and use it. · 90fc00a6
      Clément Bœsch authored
      This fixes a bunch of possible overread in avformat with the idiom p +=
      strcspn(p, "\n") + 1 (strcspn() can focus on the trailing '\0' if no
      '\n' is found, so the +1 leads to an overread).
      
      Note on lavf/matroskaenc: no extra subtitles.o Makefile dependency is
      added because only the header is required for ff_subtitles_next_line().
      
      Note on lavf/mpsubdec: code gets slightly complex to avoid an infinite
      loop in the probing since there is no more forced increment.
      90fc00a6
    • Paul B Mahol's avatar
      avformat/matroskaenc: remove bogus prores tag · 14851ca5
      Paul B Mahol authored
      Fixes: ffmpeg -i input -c:v prores output.mkv
      Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
      14851ca5
  18. 04 Sep, 2013 1 commit
  19. 27 Aug, 2013 1 commit
  20. 19 Aug, 2013 5 commits
  21. 17 Aug, 2013 1 commit
  22. 02 Aug, 2013 1 commit
  23. 24 Jul, 2013 1 commit
  24. 19 Jul, 2013 1 commit
  25. 17 Jul, 2013 3 commits
  26. 16 Jul, 2013 2 commits
  27. 09 Jul, 2013 1 commit
    • Matthew Heaney's avatar
      WebM muxer writes WebVTT subtitle track · 509642b4
      Matthew Heaney authored
      The Matroska muxer now allows WebVTT subtitle tracks to be written
      while in WebM muxing mode.
      
      WebVTT subtitle tracks have four kinds: "subtitles", "captions",
      "descriptions", and "metadata". Each text track kind has a distinct
      Mastroska CodecID and track type, as described in the temporal
      metadata guidelines here:
      
      http://wiki.webmproject.org/webm-metadata/temporal-metadata/webvtt-in-webm
      
      When the stream has codec id AV_CODEC_ID_WEBVTT, the stream packet is
      serialized per the temporal metadata guidelines cited above. The
      WebVTT cue is written as a Matroska block group. The block frame
      comprises the WebVTT cue id, followed by the cue settings, followed by
      the cue text.  (The block timestamp is synthesized from the cue
      timestamp.)
      Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
      509642b4