summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibVideo/VP9/Parser.cpp
AgeCommit message (Expand)Author
2022-11-30LibVideo/VP9: Prefix TransformSize with Transform_ instead of TX_Zaggy1024
2022-11-30LibVideo/VP9: Rename TX(Mode|Size) to Transform(Mode|Size)Zaggy1024
2022-11-30LibVideo/VP9: Specify more units in Parser::residual()Zaggy1024
2022-11-30LibVideo/VP9: Move persistent context storage to a different headerZaggy1024
2022-11-30LibVideo/VP9: Replace (DCT|ADST)_(DCT_ADST) with struct TransformSetZaggy1024
2022-11-30LibVideo/VP9: Convert token scan order indices to u16Zaggy1024
2022-11-30LibVideo/VP9: Pass the sub-block transform type around as a parameterZaggy1024
2022-11-30LibVideo/VP9: Move segmentation parameters to FrameContextZaggy1024
2022-11-30LibVideo/VP9: Use a bitwise enum for motion vector joint selectionZaggy1024
2022-11-30LibVideo/VP9: Index inter-frame references with named fields or an enumZaggy1024
2022-11-30LibVideo/VP9: Move reference frame type fields to FrameContextZaggy1024
2022-11-30LibVideo/VP9: Move the transform mode field from Parser to FrameContextZaggy1024
2022-11-30LibVideo/VP9: Retain adjacent block contexts storage between framesZaggy1024
2022-11-30LibVideo/VP9: Select and read motion vectors without fields in ParserZaggy1024
2022-11-30LibVideo/VP9: Store tile counts in FrameContextZaggy1024
2022-11-30LibVideo/VP9: Move more block fields into the BlockContext structZaggy1024
2022-11-30LibVideo/VP9: Move quantizer indices into FrameContextZaggy1024
2022-11-30LibVideo/VP9: Move loop filter parameters to FrameContextZaggy1024
2022-11-30LibVideo/VP9: Move fields set in uncompressed_header() to FrameContextZaggy1024
2022-11-30LibVideo/VP9: Store color config in the frame contextZaggy1024
2022-11-30LibVideo/VP9: Add a FIXME to keep render_and_frame_size_differentZaggy1024
2022-11-30LibVideo/VP9: Choose whether/how to show new frames using an enumZaggy1024
2022-11-30LibVideo/VP9: Add Frame, Tile and Block context structsZaggy1024
2022-11-30LibVideo/VP9: Remove m_eob_total field from parserZaggy1024
2022-11-30LibVideo/VP9: Remove m_mi_row and col fields from the parserZaggy1024
2022-11-30LibVideo/VP9: Use a struct for block context to keep between framesZaggy1024
2022-11-30LibVideo/VP9: Remove dump_frame_info() function from DecoderZaggy1024
2022-11-30LibVideo/VP9: Use a class to store 2D context informationZaggy1024
2022-11-30LibVideo/VP9: Store data used between decode_block calls in a structZaggy1024
2022-11-30LibVideo/VP9: Change fields within decode_partition() to variablesZaggy1024
2022-11-30LibVideo/VP9: Don't store the default_intra_mode in a fieldZaggy1024
2022-11-30LibVideo/VP9: Apply higher optimization levels to Decoder and ParserZaggy1024
2022-11-12LibVideo: Create TokensContext struct for token parsing parametersZaggy1024
2022-11-12LibVideo: Parameterize all tree parsing for motion vectors in VP9Zaggy1024
2022-11-12LibVideo: Parameterize parsing single reference frame selection in VP9Zaggy1024
2022-11-12LibVideo: Parameterize parsing compound references in the VP9 decoderZaggy1024
2022-11-12LibVideo: Parameterize compound mode parsing in the VP9 decoderZaggy1024
2022-11-12LibVideo: Parameterize parsing if a block is inter predicted in VP9Zaggy1024
2022-11-12LibVideo: Parameterize TXSize parsing for the VP9 decoderZaggy1024
2022-11-12LibVideo: Parameterize coefficient skip parsing for VP9Zaggy1024
2022-11-12LibVideo: Parameterize segment ID parsing for the VP9 decoderZaggy1024
2022-11-12LibVideo: Parameterize interpolation filter parsing for the VP9 decoderZaggy1024
2022-11-12LibVideo: Parameterize inter mode parsing in the VP9 decoderZaggy1024
2022-11-12LibVideo: Parameterize UV mode parsing in the VP9 decoderZaggy1024
2022-11-12LibVideo: Parameterize intra prediction mode parsing for VP9Zaggy1024
2022-11-12LibVideo: Parameterize parsing the default UV prediction mode for VP9Zaggy1024
2022-11-12LibVideo: Parameterize parsing of the default VP9 intra mode treeZaggy1024
2022-11-12LibVideo: Move parsing of Partition to its own TreeParser functionZaggy1024
2022-11-12LibVideo: Use the BlockSubsize enum where appropriate in the VP9 parserZaggy1024
2022-11-12LibVideo: Combine VP9's Intra- and InterMode enums into PredictionModeZaggy1024