]> git.sesse.net Git - nageru/history - video_stream.cpp
Allow symlinked frame files. Useful for testing.
[nageru] / video_stream.cpp
2018-11-25 Steinar H. GundersonCache file descriptors when reading frames, for better...
2018-11-25 Steinar H. GundersonChange from file-per-frame to multiple files per frame.
2018-10-31 Steinar H. GundersonStop sending interpolated images through the cache.
2018-10-30 Steinar H. GundersonFix some more leaks on clear_queue().
2018-10-30 Steinar H. GundersonThe video player only ever waited for original frames...
2018-10-28 Steinar H. GundersonFix leaks of InterpolatedFrameResources on clear_queue...
2018-10-28 Steinar H. GundersonMove to RAII queue counting, to fix some underflows.
2018-10-27 Steinar H. GundersonSome manual line breaking.
2018-10-27 Steinar H. GundersonMove QueuedFrame instead of copying it around.
2018-10-27 Steinar H. GundersonFix a leak that somehow only showed up on NVIDIA.
2018-10-26 Steinar H. GundersonPreload original JPEGs from disk.
2018-10-26 Steinar H. GundersonAdd a queue of frames going into VideoStream.
2018-10-25 Steinar H. GundersonDo not try to show a frame until we've computed it...
2018-10-21 Steinar H. GundersonFix a race where refresh frames could be put into the...
2018-10-14 Steinar H. GundersonSupport changing the interpolation quality.
2018-10-14 Steinar H. GundersonAssorted clang-format fixes (not complete).
2018-10-12 Steinar H. GundersonSend refresh frames every 100 ms or so, so that the...
2018-10-11 Steinar H. GundersonFix issues with displaying faded interpolating frames...
2018-10-10 Steinar H. GundersonImplement fades.
2018-10-10 Steinar H. GundersonMove Y'CbCr conversion into a common utility class.
2018-10-05 Steinar H. GundersonFix some Clang warnings.
2018-09-29 Steinar H. GundersonDecode 4:2:2 JPEGs via VA-API if available.
2018-09-20 Steinar H. GundersonShow interpolated frames in the live window.
2018-09-16 Steinar H. GundersonSubsample chroma on the GPU instead of the CPU.
2018-09-16 Steinar H. GundersonChange from operating point 3 to 2 (more laptop-friendl...
2018-09-16 Steinar H. GundersonDo deinterleaving on the GPU (subsampling still remains).
2018-09-16 Steinar H. GundersonDo the interpolation in Y'CbCr instead of RGBA; saves...
2018-09-16 Steinar H. GundersonGive the VideoStream thread a name.
2018-09-15 Steinar H. GundersonMake VideoStream capable of using the shared JPEG cache...
2018-09-15 Steinar H. GundersonRelease flow textures when we are done with them.
2018-09-15 Steinar H. GundersonMake the output actually follow the input in an interpo...
2018-09-15 Steinar H. GundersonFix some flickering due to YCbCr interpretation.
2018-09-15 Steinar H. GundersonEncode JPEGs from the interpolated frames.
2018-09-15 Steinar H. GundersonStart hacking in support for interpolated frames in...
2018-09-15 Steinar H. GundersonMove stream generation into a new class VideoStream...