ladybird/Userland/Libraries/LibVideo
Zaggy1024 074f771b59 LibVideo: Add VideoFrame class for decoded video frames
The class is virtual and has one subclass, SubsampledYUVFrame, which
is used by the VP9 decoder to return a single frame. The
output_to_bitmap(Bitmap&) function can be used to set pixels on an
existing bitmap of the correct size to the RGB values that
should be displayed. The to_bitmap() function will allocate a new bitmap
and fill it using output_to_bitmap.

This new class also implements bilinear scaling of the subsampled U and
V planes so that subsampled videos' colors will appear smoother.
2022-10-31 14:47:13 +01:00
..
Color LibVideo: Implement CICP color space conversion 2022-10-25 11:06:11 +02:00
VP9 LibVideo: Add VideoFrame class for decoded video frames 2022-10-31 14:47:13 +01:00
CMakeLists.txt LibVideo: Add VideoFrame class for decoded video frames 2022-10-31 14:47:13 +01:00
DecoderError.h LibVideo: Make DecoderError getters const 2022-10-31 00:02:52 +01:00
MatroskaDocument.h LibVideo: Add CICP parsing to MatroskaReader 2022-10-25 11:06:11 +02:00
MatroskaReader.cpp LibVideo: Add CICP parsing to MatroskaReader 2022-10-25 11:06:11 +02:00
MatroskaReader.h LibVideo: Add CICP parsing to MatroskaReader 2022-10-25 11:06:11 +02:00
VideoFrame.cpp LibVideo: Add VideoFrame class for decoded video frames 2022-10-31 14:47:13 +01:00
VideoFrame.h LibVideo: Add VideoFrame class for decoded video frames 2022-10-31 14:47:13 +01:00