aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/tiffenc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-04-04 21:17:52 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-04-04 21:17:52 +0200
commit4480edcf312b8d4350201eca047ccdd2c27f8517 (patch)
treedbca26f831a32c9638f0aab77daaee0eda3caf86 /libavcodec/tiffenc.c
parent6cecb8915aa8fa8b55f494f9dd05cce1a4c36093 (diff)
parent91dffb4c1dfc7232e74ab86536afe39a777fc12d (diff)
downloadandroid_external_ffmpeg-4480edcf312b8d4350201eca047ccdd2c27f8517.tar.gz
android_external_ffmpeg-4480edcf312b8d4350201eca047ccdd2c27f8517.tar.bz2
android_external_ffmpeg-4480edcf312b8d4350201eca047ccdd2c27f8517.zip
Merge remote-tracking branch 'qatar/master'
* qatar/master: w32threads: Make pthread_cond_wait follow POSIX cosmetics: Consistently place static, inline and av_cold attributes/keywords. sbrdsp: Use standard multiple inclusion guards. pcm: K&R formatting cosmetics rawdec: Support fourccs YV16 and YV24 rtmp: implement bandwidth notification rtmp: update supported audio codecs value Conflicts: libavcodec/pcm.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/tiffenc.c')
-rw-r--r--libavcodec/tiffenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tiffenc.c b/libavcodec/tiffenc.c
index fa86c48569..59b125b2e2 100644
--- a/libavcodec/tiffenc.c
+++ b/libavcodec/tiffenc.c
@@ -77,7 +77,7 @@ typedef struct TiffEncoderContext {
* @param need Needed bytes
* @return 0 - ok, 1 - no free space
*/
-inline static int check_size(TiffEncoderContext * s, uint64_t need)
+static inline int check_size(TiffEncoderContext * s, uint64_t need)
{
if (s->buf_size < *s->buf - s->buf_start + need) {
*s->buf = s->buf_start + s->buf_size + 1;