diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-10-01 19:29:10 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-10-01 19:29:10 +0000 |
commit | 144f062500fec248ea93b6621568c7052cb34c54 (patch) | |
tree | c1af19d8964ed6bc1c7ac284c3bbe0a1d748f031 /libavcodec/avcodec.h | |
parent | e41e834272ee8cb15f9c386afc88aaa84bfaec7e (diff) | |
download | ffmpeg-144f062500fec248ea93b6621568c7052cb34c54.tar.gz |
rv10 cleanup (de)muxer still needs to be cleaned up (still searching volunteer for that ;) )
Originally committed as revision 988 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index fb0768a520..d7a8fb0fd8 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -5,8 +5,8 @@ #define LIBAVCODEC_VERSION_INT 0x000406 #define LIBAVCODEC_VERSION "0.4.6" -#define LIBAVCODEC_BUILD 4629 -#define LIBAVCODEC_BUILD_STR "4629" +#define LIBAVCODEC_BUILD 4630 +#define LIBAVCODEC_BUILD_STR "4630" enum CodecID { CODEC_ID_NONE, @@ -699,6 +699,19 @@ typedef struct AVCodecContext { #define FF_IDCT_MLIB 6 #define FF_IDCT_ARM 7 + /** + * slice count + * encoding: set by lavc + * decoding: set by user (or 0) + */ + int slice_count; + /** + * slice offsets in the frame in bytes + * encoding: set/allocated by lavc + * decoding: set/allocated by user (or NULL) + */ + int *slice_offset; + //FIXME this should be reordered after kabis API is finished ... //TODO kill kabi /* |