Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-03-25Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: avcodec: add missing includes Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-03-25avcodec: add missing includesVittorio Giovara
2013-04-11Merge commit '8a776ad90e00ab2b98e8683ac6182d641a383c3a'Michael Niedermayer
* 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>
2013-04-10h261: Move shared data tables from a header to a proper C fileDiego Biurrun
2013-04-05Merge commit 'b78f81c8033904e2e75add0c9a603df6df514a30'Michael Niedermayer
* 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>
2012-04-11h261: move tables from header to .c file.Reimar Döffinger
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>