Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | yuv4mpegenc: do not access AVCodecContext.coded_frame | Anton Khirnov | 2014-07-09 | 1 | -3/+5 |
| | | | | | | | | Its contents are meaningful only if the stream codec context is the one actually used for encoding, which is often not the case (and is discouraged). Use AVCodecContext.field_order instead. | ||||
* | lavf: switch to AVStream.time_base as the hint for the muxer timebase | Anton Khirnov | 2014-06-18 | 1 | -2/+3 |
| | | | | | | | | | | | | Previously, AVStream.codec.time_base was used for that purpose, which was quite confusing for the callers. This change also opens the path for removing AVStream.codec. The change in the lavf-mkv test is due to the native timebase (1/1000) being used instead of the default one (1/90000), so the packets are now sent to the crc muxer in the same order in which they are demuxed (previously some of them got reordered because of inexact timestamp conversion). | ||||
* | yuv4mpeg: split the demuxer and muxer into separate files | Anton Khirnov | 2014-05-18 | 1 | -0/+186 |