From: Fabrice Bellard Date: Mon, 20 May 2002 16:22:51 +0000 (+0000) Subject: added avcodec_set_bit_exact() for testing X-Git-Tag: v0.5~17758 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=51a4966370801e11e1a6b8c0de7c7d774d97503d;p=coroid%2Flibav_saccubus.git added avcodec_set_bit_exact() for testing Originally committed as revision 540 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 863f1d47e..2cfbdf6f9 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);