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
2015-08-19checkasm: Explicitly declare function prototypesHenrik Gramner
Now we no longer have to rely on function pointers intentionally declared without specified argument types. This makes it easier to support functions with floating point parameters or return values as well as functions returning 64-bit values on 32-bit architectures. It also avoids having to explicitly cast strides to ptrdiff_t for example.
2015-07-26Merge commit '4d0d55cd623bcd504867f948849380f6b4060b4d'Michael Niedermayer
* commit '4d0d55cd623bcd504867f948849380f6b4060b4d': checkasm: Use LOCAL_ALIGNED See: f467fc02b475cd45b68aa5fb5f7c78286110ba86 See: 9e83ac6114de3d94eb992eff8ed810234069a7b2 Merged-by: Michael Niedermayer <michael@niedermayer.cc>
2015-07-26checkasm: Use LOCAL_ALIGNEDMichael Niedermayer
Fixes alignment issues and bus errors. Signed-off-by: Martin Storsjö <martin@martin.st>
2015-07-18Merge commit 'fc56868399213d3e9be19bdebeb64df233b39a7e'Michael Niedermayer
* commit 'fc56868399213d3e9be19bdebeb64df233b39a7e': cosmetics: Reformat checkasm tests Merged-by: Michael Niedermayer <michael@niedermayer.cc>
2015-07-18Merge commit 'd37f23263584774e1798e9ac909a398304a05091'Michael Niedermayer
* commit 'd37f23263584774e1798e9ac909a398304a05091': checkasm: Add unit tests for bswapdsp Merged-by: Michael Niedermayer <michael@niedermayer.cc>
2015-07-17cosmetics: Reformat checkasm testsLuca Barbato
2015-07-17checkasm: Add unit tests for bswapdspHenrik Gramner
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>