comparison avcodec.h @ 7721:198421b7dbc0 libavcodec

Add AVCodecContext.bits_per_raw_sample field.
author pross
date Fri, 29 Aug 2008 03:59:48 +0000
parents b1cacb2f48a0
children a618bba0b6b4
comparison
equal deleted inserted replaced
7720:b1cacb2f48a0 7721:198421b7dbc0
2249 * output in AVFrame.reordered_opaque 2249 * output in AVFrame.reordered_opaque
2250 * - encoding: unused 2250 * - encoding: unused
2251 * - decoding: Set by user. 2251 * - decoding: Set by user.
2252 */ 2252 */
2253 int64_t reordered_opaque; 2253 int64_t reordered_opaque;
2254
2255 /**
2256 * Bits per sample/pixel of internal libavcodec pixel/sample format.
2257 * This field is applicable only when sample_fmt is SAMPLE_FMT_S32.
2258 * - encoding: set by user.
2259 * - decoding: set by libavcodec.
2260 */
2261 int bits_per_raw_sample;
2254 } AVCodecContext; 2262 } AVCodecContext;
2255 2263
2256 /** 2264 /**
2257 * AVCodec. 2265 * AVCodec.
2258 */ 2266 */