comparison avcodec.h @ 1597:4c9165372ab3 libavcodec

noise reduction of dct coefficients
author michael
date Sun, 02 Nov 2003 23:19:47 +0000
parents c1d5491f144a
children 932d306bf1dc
comparison
equal deleted inserted replaced
1596:c1d5491f144a 1597:4c9165372ab3
14 #include "common.h" 14 #include "common.h"
15 #include "rational.h" 15 #include "rational.h"
16 16
17 #define FFMPEG_VERSION_INT 0x000408 17 #define FFMPEG_VERSION_INT 0x000408
18 #define FFMPEG_VERSION "0.4.8" 18 #define FFMPEG_VERSION "0.4.8"
19 #define LIBAVCODEC_BUILD 4689 19 #define LIBAVCODEC_BUILD 4690
20 20
21 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT 21 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT
22 #define LIBAVCODEC_VERSION FFMPEG_VERSION 22 #define LIBAVCODEC_VERSION FFMPEG_VERSION
23 23
24 #define AV_STRINGIFY(s) AV_TOSTRING(s) 24 #define AV_STRINGIFY(s) AV_TOSTRING(s)
1356 * Palette control structure 1356 * Palette control structure
1357 * - encoding: ??? (no palette-enabled encoder yet) 1357 * - encoding: ??? (no palette-enabled encoder yet)
1358 * - decoding: set by user. 1358 * - decoding: set by user.
1359 */ 1359 */
1360 struct AVPaletteControl *palctrl; 1360 struct AVPaletteControl *palctrl;
1361
1362 /**
1363 * noise reduction strength
1364 * - encoding: set by user.
1365 * - decoding: unused
1366 */
1367 int noise_reduction;
1361 1368
1362 } AVCodecContext; 1369 } AVCodecContext;
1363 1370
1364 1371
1365 /** 1372 /**