1. 30 Sep, 2016 1 commit
    • Anton Khirnov's avatar
      lavf: fix usage of AVIOContext.seekable · 83548fe8
      Anton Khirnov authored
      It is supposed to be a flag. The only currently defined value is
      AVIO_SEEKABLE_NORMAL, but other ones may be added in the future.
      However all the current lavf code treats this field as a bool (mainly
      for historical reasons).
      Change all those cases to properly check for AVIO_SEEKABLE_NORMAL.
      83548fe8
  2. 23 Feb, 2016 1 commit
    • Anton Khirnov's avatar
      lavf: replace AVStream.codec with AVStream.codecpar · 9200514a
      Anton Khirnov authored
      Currently, AVStream contains an embedded AVCodecContext instance, which
      is used by demuxers to export stream parameters to the caller and by
      muxers to receive stream parameters from the caller. It is also used
      internally as the codec context that is passed to parsers.
      
      In addition, it is also widely used by the callers as the decoding (when
      demuxer) or encoding (when muxing) context, though this has been
      officially discouraged since Libav 11.
      
      There are multiple important problems with this approach:
          - the fields in AVCodecContext are in general one of
              * stream parameters
              * codec options
              * codec state
            However, it's not clear which ones are which. It is consequently
            unclear which fields are a demuxer allowed to set or a muxer allowed to
            read. This leads to erratic behaviour depending on whether decoding or
            encoding is being performed or not (and whether it uses the AVStream
            embedded codec context).
          - various synchronization issues arising from the fact that the same
            context is used by several different APIs (muxers/demuxers,
            parsers, bitstream filters and encoders/decoders) simultaneously, with
            there being no clear rules for who can modify what and the different
            processes being typically delayed with respect to each other.
          - avformat_find_stream_info() making it necessary to support opening
            and closing a single codec context multiple times, thus
            complicating the semantics of freeing various allocated objects in the
            codec context.
      
      Those problems are resolved by replacing the AVStream embedded codec
      context with a newly added AVCodecParameters instance, which stores only
      the stream parameters exported by the demuxers or read by the muxers.
      9200514a
  3. 16 Sep, 2013 1 commit
  4. 14 Apr, 2013 1 commit
  5. 16 Mar, 2013 1 commit
  6. 07 Aug, 2012 1 commit
  7. 29 Jul, 2012 1 commit
    • Anton Khirnov's avatar
      lavf: deprecate r_frame_rate. · aba232cf
      Anton Khirnov authored
      According to its description, it is supposed to be the LCM of all the
      frame durations. The usability of such a thing is vanishingly small,
      especially since we cannot determine it with any amount of reliability.
      Therefore get rid of it after the next bump.
      
      Replace it with the average framerate where it makes sense.
      
      FATE results for the wtv and xmv demux tests change. In the wtv case
      this is caused by the file being corrupted (or possibly badly cut) and
      containing invalid timestamps. This results in lavf estimating the
      framerate wrong and making up wrong frame durations.
      In the xmv case the file contains pts jumps, so again the estimated
      framerate is far from anything sane and lavf again makes up different
      frame durations.
      
      In some other tests lavf starts making up frame durations from different
      frame.
      aba232cf
  8. 30 Dec, 2011 1 commit
    • Paul B Mahol's avatar
      Use more designated initializers. · ba10207b
      Paul B Mahol authored
      Also remove some pointless NULL/0 assigments.
      
      C++ code must be left as it is because named struct
      initializers are not supported by C++ standard.
      ba10207b
  9. 30 Nov, 2011 1 commit
  10. 17 Jul, 2011 1 commit
  11. 03 Apr, 2011 1 commit
  12. 19 Mar, 2011 1 commit
  13. 17 Mar, 2011 1 commit
  14. 03 Mar, 2011 1 commit
  15. 01 Mar, 2011 1 commit
  16. 22 Feb, 2011 1 commit
  17. 21 Feb, 2011 1 commit
  18. 20 Feb, 2011 2 commits
  19. 31 Jan, 2011 3 commits
  20. 29 Jan, 2011 1 commit
    • Reimar Döffinger's avatar
      VC1testenc: convert pts values to correct time-base. · 76c802e9
      Reimar Döffinger authored
      VC1 test container always uses time-base 1 ms, so we must convert
      from whatever time-base the application gave us to that, otherwise
      the video will play at ridiculous speeds.
      It would be possible to signal that a container supports only one
      time-base and have code in a layer above do the conversion, but
      for a single format this seems over-engineered.
      76c802e9
  21. 28 Jan, 2011 1 commit
  22. 26 Jan, 2011 1 commit
  23. 31 Mar, 2010 1 commit
  24. 13 Aug, 2008 1 commit
  25. 23 Jul, 2008 1 commit