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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-01-31avcodec/dca: add REV1AUX sync wordfoo86
2015-10-30all: fix enum definition for large valuesGanesh Ajjanagadde
ISO C restricts enumerator values to the range of int. Thus (for instance) 0x80000000 unfortunately does not work, and throws a warning with -Wpedantic on clang 3.7. This fixes it by using alternative expressions that result in identical values but do not have this issue. Tested with FATE. Reviewed-by: Ronald S. Bultje <rsbultje@gmail.com> Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
2015-03-15Merge commit '4da5aacc7eba274a4f18411120de539d39c5151e'Michael Niedermayer
* commit '4da5aacc7eba274a4f18411120de539d39c5151e': dca: Mark syncword constants unsigned; they do not fit in 32-bit signed int Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-03-13dca: Mark syncword constants unsigned; they do not fit in 32-bit signed intDiego Biurrun
2015-03-04Merge commit '25f613f8be3b51e4396b93cda131e4631ba54302'Michael Niedermayer
* commit '25f613f8be3b51e4396b93cda131e4631ba54302': dca: Move syncword definitions to a separate header Conflicts: libavcodec/dca_parser.c libavformat/dtsdec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-03-04dca: Move syncword definitions to a separate headerDiego Biurrun