diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-10 04:04:51 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-10 04:04:51 +0000 |
commit | 6c060b55a91107da3eeb7efb53cbdf8aec0c51e7 (patch) | |
tree | 969891b6d74e72eb4e205db98bd36579554af11c /libavcodec | |
parent | c46eeae2a80dfe0046c15b542e8b9a2c78f19bf7 (diff) | |
download | ffmpeg-6c060b55a91107da3eeb7efb53cbdf8aec0c51e7.tar.gz |
Fix implicit declaration warning.
Originally committed as revision 21114 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h index ce8dad057d..bba158629b 100644 --- a/libavcodec/internal.h +++ b/libavcodec/internal.h @@ -42,4 +42,6 @@ int ff_is_hwaccel_pix_fmt(enum PixelFormat pix_fmt); */ AVHWAccel *ff_find_hwaccel(enum CodecID codec_id, enum PixelFormat pix_fmt); +int ff_match_2uint16(const uint16_t (*tab)[2], int size, int a, int b); + #endif /* AVCODEC_INTERNAL_H */ |