aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/h261data.c
Commit message (Collapse)AuthorAgeFilesLines
* avcodec/h261data: Make some tables non-staticAndreas Rheinhardt2024-06-201-6/+6
| | | | | | | This will allow to avoid the indirection via ff_h261_rl_tcoeff in future commits. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avcodec/h261dec: Use VLC symbol tableAndreas Rheinhardt2024-06-201-1/+1
| | | | | | | | This is possible now that MB_TYPE_CBP and MB_TYPE_QUANT fit into an int16_t; only MB_TYPE_H261_FIL needs to be remapped to MB_TYPE_CODEC_SPECIFIC. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* Merge remote-tracking branch 'qatar/master'Michael Niedermayer2014-03-251-0/+1
|\ | | | | | | | | | | | | * qatar/master: avcodec: add missing includes Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * avcodec: add missing includesVittorio Giovara2014-03-251-0/+1
| |
* | Merge commit '8a776ad90e00ab2b98e8683ac6182d641a383c3a'Michael Niedermayer2013-04-111-2/+2
|\| | | | | | | | | | | | | | | | | | | | | | | | | * commit '8a776ad90e00ab2b98e8683ac6182d641a383c3a': h261: Move shared data tables from a header to a proper C file Conflicts: libavcodec/Makefile libavcodec/h261data.c libavcodec/h261dec.c libavcodec/h261enc.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * h261: Move shared data tables from a header to a proper C fileDiego Biurrun2013-04-101-0/+155
|
* Merge commit 'b78f81c8033904e2e75add0c9a603df6df514a30'Michael Niedermayer2013-04-051-71/+71
| | | | | | | | | | | | | * commit 'b78f81c8033904e2e75add0c9a603df6df514a30': h261: K&R formatting and prettyprinting cosmetics Conflicts: libavcodec/h261_parser.c libavcodec/h261data.h libavcodec/h261dec.c libavcodec/h261enc.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
* h261: move tables from header to .c file.Reimar Döffinger2012-04-111-0/+155
Currently they end up twice in the binary, since both encoder and decoder include the header and thus each gets their own copy. This is clearly nonsense for the const tables, but shouldn't be necessary for the RLTable either. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>