diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-05-14 23:08:01 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-05-14 23:08:01 +0000 |
commit | d8085ea727f8768c3ef62d988df79cda6c052301 (patch) | |
tree | 896e0b92005e09ccb8ab3b93abc8ff16f0be49f0 /libavcodec/avcodec.h | |
parent | 3bb10888ff7a845efa30fd64d5978a8708db01d7 (diff) | |
download | ffmpeg-d8085ea727f8768c3ef62d988df79cda6c052301.tar.gz |
cleanup
Originally committed as revision 1882 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 1393275da8..e17cbe6e01 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -15,8 +15,8 @@ extern "C" { #define LIBAVCODEC_VERSION_INT 0x000406 #define LIBAVCODEC_VERSION "0.4.6" -#define LIBAVCODEC_BUILD 4666 -#define LIBAVCODEC_BUILD_STR "4666" +#define LIBAVCODEC_BUILD 4667 +#define LIBAVCODEC_BUILD_STR "4667" #define LIBAVCODEC_IDENT "FFmpeg" LIBAVCODEC_VERSION "b" LIBAVCODEC_BUILD_STR @@ -1372,6 +1372,12 @@ void avcodec_register_all(void); void avcodec_flush_buffers(AVCodecContext *avctx); /* misc usefull functions */ + +/** + * returns a single letter to describe the picture type + */ +char av_get_pict_type_char(int pict_type); + /** * reduce a fraction. * this is usefull for framerate calculations |