comparison avcodec.h @ 1471:dcb784544ec6 libavcodec

scenechange_threshold
author michaelni
date Tue, 16 Sep 2003 11:25:29 +0000
parents 51239e385475
children f22010affdce
comparison
equal deleted inserted replaced
1470:dc1aebe51742 1471:dcb784544ec6
13 13
14 #include "common.h" 14 #include "common.h"
15 15
16 #define FFMPEG_VERSION_INT 0x000408 16 #define FFMPEG_VERSION_INT 0x000408
17 #define FFMPEG_VERSION "0.4.8" 17 #define FFMPEG_VERSION "0.4.8"
18 #define LIBAVCODEC_BUILD 4679 18 #define LIBAVCODEC_BUILD 4680
19 19
20 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT 20 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT
21 #define LIBAVCODEC_VERSION FFMPEG_VERSION 21 #define LIBAVCODEC_VERSION FFMPEG_VERSION
22 22
23 #define AV_STRINGIFY(s) AV_TOSTRING(s) 23 #define AV_STRINGIFY(s) AV_TOSTRING(s)
1240 * this is used to workaround some encoder bugs 1240 * this is used to workaround some encoder bugs
1241 * - encoding: unused 1241 * - encoding: unused
1242 * - decoding: set by user, will be converted to upper case by lavc during init 1242 * - decoding: set by user, will be converted to upper case by lavc during init
1243 */ 1243 */
1244 unsigned int stream_codec_tag; 1244 unsigned int stream_codec_tag;
1245
1246 /**
1247 * scene change detection threshold.
1248 * 0 is default, larger means fewer detected scene changes
1249 * - encoding: set by user.
1250 * - decoding: unused
1251 */
1252 int scenechange_threshold;
1245 } AVCodecContext; 1253 } AVCodecContext;
1246 1254
1247 1255
1248 /** 1256 /**
1249 * AVOption. 1257 * AVOption.