| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-06-30 | VideoCommon: Rename AVIDump to FrameDump | altimumdelta | |
| 2019-03-11 | decrease gop size (keyint) | feos | |
| this makes seeking a lot smoother (especially at high resolutions), while only adding less than 1% of filesize with this codec. | |||
| 2019-03-11 | change pixel format from BGRA to BGR0 | feos | |
| for this kind of footage carrying alpha information makes no sense, and it additionally complicates things by hugely damaging compatibility of the resulting video. after this change alone the video becomes compatible with VfW/WinAPI and tools that rely on it (avisynth, virtualdub). fixes https://bugs.dolphin-emu.org/issues/11141 and https://bugs.dolphin-emu.org/issues/10193 | |||
| 2018-07-14 | AVIDump: use dump_path rather than deprecated AVFormatContext::filename | Michael M | |
| AVFormatContext::filename was deprecated in lavf 58.7.100 in favor of AVFormatContext::url. Instead of adding version-checking logic, just use the passed-in dump path instead. | |||
| 2018-07-14 | AVIDump: av_register_all is deprecated/unneeded since 58.9.100 | Michael M | |
| 2018-04-06 | [AVIDump] fix compilation issues on Linux | Anthony | |
| 2018-01-17 | AVIDump: Remove incorrect usage of s_ prefix | JosJuice | |
| 2018-01-18 | Handle framedump path not existing | Lucas Kent | |
| 2018-01-03 | Allow users to specify the encoder used for framedumping. | Vlad Firoiu | |
| 2017-06-07 | do not assign in conditional statements | Shawn Hoffman | |
| 2017-03-05 | Appease linter. | Vlad Firoiu | |
| 2017-03-05 | Warn on invalid video codec. | Vlad Firoiu | |
| 2017-03-05 | GetDumpPath function. | Vlad Firoiu | |
| 2017-03-05 | Use ffv1 if user requests it. | Vlad Firoiu | |
| 2017-02-27 | error logs | Vlad Firoiu | |
| 2017-02-27 | Appease global header warning. | Vlad Firoiu | |
| 2017-02-27 | Dump to arbitrary URLs. | Vlad Firoiu | |
| 2017-02-27 | Configable dump codec. | Vlad Firoiu | |
| 2017-02-27 | XVID FourCC for MPEG-4 codecs. | Vlad Firoiu | |
| 2017-02-27 | More warnings for AVIDump. | Vlad Firoiu | |
| 2017-02-27 | Arbitrary dump formats. | Vlad Firoiu | |
| 2017-02-27 | guess format before allocating context | Vlad Firoiu | |
| 2017-02-27 | Handle delayed frames at the end of the movie. | Vlad Firoiu | |
| 2017-02-27 | Merge pull request #4958 from RisingFog/avidump_bitrate | Anthony | |
| Add configurable video dump bitrate to INI | |||
| 2017-02-27 | Merge pull request #4959 from lioncash/ini | Anthony | |
| IniFile: Handle s64/u64 values | |||
| 2017-02-26 | AVIDump[regression]: close avio handles | Michael Maltese | |
| 2017-02-25 | Add configurable video dump bitrate to INI | Chris Burgener | |
| 2017-02-25 | IniFile: Handle s64/u64 values | Lioncash | |
| 2017-02-06 | AVIDump: use a separate AVCodecContext | Michael Maltese | |
| Using the AVCodecContext contained in AVStream for muxing is officially discouraged[1] and AVStream::codec was deprecated in favor of AVStream::codecpar in libavformat 57.33.100 / 57.5.0. 1: [FFmpeg-cvslog] lavf: replace AVStream.codec with AVStream.codecpar: https://ffmpeg.org/pipermail/ffmpeg-cvslog/2016-April/099152.html | |||
| 2017-02-06 | AVIDump: open codec before stream | Michael Maltese | |
| Minor oversight in the existing code. | |||
| 2017-02-06 | AVIDump: use avformat_free_context | Michael Maltese | |
| This function frees all associated streams and codec contexts, and has existed since libavformat 52.96.0 (February 2011). | |||
| 2017-02-06 | AVIDump: Replace deprecated avcodec_encode_video2 | Michael Maltese | |
| 2017-01-29 | AVIDump: Rename CloseFile to CloseVideoFile | Lioncash | |
| Retains symmetry with CreateVideoFile. | |||
| 2017-01-23 | AVIDump: rename CreateFile -> CreateVideoFile (conflict with windows.h) | Michael Maltese | |
| 2016-11-07 | Renderer: Threaded frame dumping. | degasus | |
| 2016-11-04 | AVIDump: Drop frames which are delayed over a savestate. | degasus | |
| 2016-11-04 | AVIDump: Add a struct for the state. | degasus | |
| So AddFrame use no global state and can be threaded well. | |||
| 2016-11-04 | AVIDump: Inline OSD error handling. | degasus | |
| This fixes a review feedback in PR #4345. | |||
| 2016-11-04 | AVIDump: Merge redundant variables. | degasus | |
| They were always the same. We also don't scale at all. | |||
| 2016-11-04 | AVIDump: Drop stored frame. | degasus | |
| This used an invalid pointer, which was only valid within AddFrame. This drops a feature which shall dump the last frame as it might was dropped before. A good implementation however should "overwrite" the last frame if the time matches. But this needs to delay every frame a bit. | |||
| 2016-10-10 | AVIDump: Move CoreTiming into caller. | degasus | |
| 2016-10-08 | AVIDump: Hard code rgba. | degasus | |
| 2016-10-08 | VideoCommon: Add custom stride for framedumping. | degasus | |
| 2016-10-04 | Fix frame dumps on file close in certain situations | Chris Burgener | |
| 2016-10-03 | Fix frame dump crash when resolution changes | Chris Burgener | |
| 2016-09-06 | Fix recursive code | Chris Burgener | |
| 2016-08-24 | Fix frame dump issues where frame dumping stops before next drawn frame | Chris Burgener | |
| 2016-08-04 | Remove Global Declarations from Movie | Chris Burgener | |
| 2016-07-21 | Check for zero height when splitting video dump | Chris Burgener | |
| 2016-07-10 | Use newer ffmpeg APIs to avoid deprecation warnings. | comex | |
