aboutsummaryrefslogtreecommitdiffstats
path: root/common/rfb/H264Decoder.h
Commit message (Collapse)AuthorAgeFilesLines
* Always reset H.264 contexts the same wayPierre Ossman3 hours1-2/+2
| | | | | | Reset individual contexts the same way we reset all contexts, i.e. by deleting and recreating them. Avoids surprises by having a consistent method.
* Remove mutexes from H.264 decoder and friendsPierre Ossman4 days1-2/+0
| | | | | The decodered is already flagged as strictly ordered, which means it will only be used from a single thread at a time.
* Mark overridden virtual functionsPierre Ossman2024-06-241-5/+6
| | | | | Use the new "override" keyword to properly differentiate between new virtual methods, and existing virtual methods being overridden.
* Consistently use uint8_t for data buffersPierre Ossman2023-03-181-1/+1
| | | | | These will always be byte streams at heart, so let's try to keep them with a proper type. Should make it clearer how they will be used.
* H264 DecoderVladimir Sukhonosov2022-01-211-0/+51
Linux implementation using ffmpeg