summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2002-05-20 16:22:51 +0000
committerFabrice Bellard <fabrice@bellard.org>2002-05-20 16:22:51 +0000
commit51a4966370801e11e1a6b8c0de7c7d774d97503d (patch)
tree97962ff75199eb55194387d25c572924a83b7e72 /libavcodec/avcodec.h
parent44defcfb861413714b259b3cca19e11a1cf25e4e (diff)
added avcodec_set_bit_exact() for testing
Originally committed as revision 540 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 863f1d47e5..2cfbdf6f9c 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -389,11 +389,13 @@ int avpicture_deinterlace(AVPicture *dst, AVPicture *src,
extern AVCodec *first_avcodec;
/* returns LIBAVCODEC_VERSION_INT constant */
-unsigned avcodec_version( void );
+unsigned avcodec_version(void);
/* returns LIBAVCODEC_BUILD constant */
-unsigned avcodec_build( void );
+unsigned avcodec_build(void);
void avcodec_init(void);
+void avcodec_set_bit_exact(void);
+
void register_avcodec(AVCodec *format);
AVCodec *avcodec_find_encoder(enum CodecID id);
AVCodec *avcodec_find_encoder_by_name(const char *name);