comparison avcodec.h @ 11741:872971445121 libavcodec

Add log_level_offset to AVCodecContext.
author stefano
date Mon, 17 May 2010 22:49:34 +0000
parents ceffa0ca7596
children a85d4655ad52
comparison
equal deleted inserted replaced
11740:87a5abd9b1ae 11741:872971445121
29 #include <errno.h> 29 #include <errno.h>
30 #include "libavutil/avutil.h" 30 #include "libavutil/avutil.h"
31 31
32 #define LIBAVCODEC_VERSION_MAJOR 52 32 #define LIBAVCODEC_VERSION_MAJOR 52
33 #define LIBAVCODEC_VERSION_MINOR 67 33 #define LIBAVCODEC_VERSION_MINOR 67
34 #define LIBAVCODEC_VERSION_MICRO 1 34 #define LIBAVCODEC_VERSION_MICRO 2
35 35
36 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ 36 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
37 LIBAVCODEC_VERSION_MINOR, \ 37 LIBAVCODEC_VERSION_MINOR, \
38 LIBAVCODEC_VERSION_MICRO) 38 LIBAVCODEC_VERSION_MICRO)
39 #define LIBAVCODEC_VERSION AV_VERSION(LIBAVCODEC_VERSION_MAJOR, \ 39 #define LIBAVCODEC_VERSION AV_VERSION(LIBAVCODEC_VERSION_MAJOR, \
2654 * than crf_max, even if doing so would violate VBV restrictions. 2654 * than crf_max, even if doing so would violate VBV restrictions.
2655 * - encoding: Set by user. 2655 * - encoding: Set by user.
2656 * - decoding: unused 2656 * - decoding: unused
2657 */ 2657 */
2658 float crf_max; 2658 float crf_max;
2659
2660 int log_level_offset;
2659 } AVCodecContext; 2661 } AVCodecContext;
2660 2662
2661 /** 2663 /**
2662 * AVCodec. 2664 * AVCodec.
2663 */ 2665 */