comparison avcodec.h @ 700:0fb4c66527e1 libavcodec

autodetect UMP4 (by adding a fourcc field to AVCodecContext)
author michaelni
date Thu, 26 Sep 2002 23:27:22 +0000
parents c622224012f0
children 85b071dfc7e3
comparison
equal deleted inserted replaced
699:f69f9cb461bc 700:0fb4c66527e1
3 3
4 #include "common.h" 4 #include "common.h"
5 5
6 #define LIBAVCODEC_VERSION_INT 0x000406 6 #define LIBAVCODEC_VERSION_INT 0x000406
7 #define LIBAVCODEC_VERSION "0.4.6" 7 #define LIBAVCODEC_VERSION "0.4.6"
8 #define LIBAVCODEC_BUILD 4627 8 #define LIBAVCODEC_BUILD 4628
9 #define LIBAVCODEC_BUILD_STR "4627" 9 #define LIBAVCODEC_BUILD_STR "4628"
10 10
11 enum CodecID { 11 enum CodecID {
12 CODEC_ID_NONE, 12 CODEC_ID_NONE,
13 CODEC_ID_MPEG1VIDEO, 13 CODEC_ID_MPEG1VIDEO,
14 CODEC_ID_H263, 14 CODEC_ID_H263,
673 * darkness masking (0-> disabled) 673 * darkness masking (0-> disabled)
674 * encoding: set by user 674 * encoding: set by user
675 * decoding: unused 675 * decoding: unused
676 */ 676 */
677 float dark_masking; 677 float dark_masking;
678
679 /**
680 * fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A')
681 * this is used to workaround some encoder bugs
682 * encoding: unused
683 * decoding: set by user
684 */
685 int fourcc;
678 686
679 //FIXME this should be reordered after kabis API is finished ... 687 //FIXME this should be reordered after kabis API is finished ...
680 //TODO kill kabi 688 //TODO kill kabi
681 /* 689 /*
682 Note: Below are located reserved fields for further usage 690 Note: Below are located reserved fields for further usage