comparison avcodec.h @ 831:14f4598ec793 libavcodec

support forcing low_delay during decoding
author michaelni
date Sat, 02 Nov 2002 18:47:51 +0000
parents ace3ccd18dd2
children e460775adb38
comparison
equal deleted inserted replaced
830:0a1fbae9f6e1 831:14f4598ec793
130 #define CODEC_FLAG_DR1 0x8000 /* direct renderig type 1 (store internal frames in external buffers) */ 130 #define CODEC_FLAG_DR1 0x8000 /* direct renderig type 1 (store internal frames in external buffers) */
131 #define CODEC_FLAG_NOT_TRUNCATED 0x00010000 /* input bitstream is not truncated, except before a startcode 131 #define CODEC_FLAG_NOT_TRUNCATED 0x00010000 /* input bitstream is not truncated, except before a startcode
132 allows the last part of a frame to be decoded earlier */ 132 allows the last part of a frame to be decoded earlier */
133 #define CODEC_FLAG_NORMALIZE_AQP 0x00020000 /* normalize adaptive quantization */ 133 #define CODEC_FLAG_NORMALIZE_AQP 0x00020000 /* normalize adaptive quantization */
134 #define CODEC_FLAG_INTERLACED_DCT 0x00040000 /* use interlaced dct */ 134 #define CODEC_FLAG_INTERLACED_DCT 0x00040000 /* use interlaced dct */
135 #define CODEC_FLAG_LOW_DELAY 0x00080000 /* force low delay / will fail on b frames */
135 136
136 /* codec capabilities */ 137 /* codec capabilities */
137 138
138 #define CODEC_CAP_DRAW_HORIZ_BAND 0x0001 /* decoder can use draw_horiz_band callback */ 139 #define CODEC_CAP_DRAW_HORIZ_BAND 0x0001 /* decoder can use draw_horiz_band callback */
139 #define CODEC_CAP_DR1 0x0002 /* direct rendering method 1 */ 140 #define CODEC_CAP_DR1 0x0002 /* direct rendering method 1 */