comparison avcodec.h @ 1777:d183026acdfa libavcodec

quantizer noise shaping
author michael
date Mon, 02 Feb 2004 03:52:58 +0000
parents bdf3927bf8c5
children 9848ca4ad861
comparison
equal deleted inserted replaced
1776:33f736f68b52 1777:d183026acdfa
15 #include "rational.h" 15 #include "rational.h"
16 #include <sys/types.h> /* size_t */ 16 #include <sys/types.h> /* size_t */
17 17
18 #define FFMPEG_VERSION_INT 0x000408 18 #define FFMPEG_VERSION_INT 0x000408
19 #define FFMPEG_VERSION "0.4.8" 19 #define FFMPEG_VERSION "0.4.8"
20 #define LIBAVCODEC_BUILD 4699 20 #define LIBAVCODEC_BUILD 4700
21 21
22 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT 22 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT
23 #define LIBAVCODEC_VERSION FFMPEG_VERSION 23 #define LIBAVCODEC_VERSION FFMPEG_VERSION
24 24
25 #define AV_STRINGIFY(s) AV_TOSTRING(s) 25 #define AV_STRINGIFY(s) AV_TOSTRING(s)
1502 int antialias_algo; 1502 int antialias_algo;
1503 #define FF_AA_AUTO 0 1503 #define FF_AA_AUTO 0
1504 #define FF_AA_FASTINT 1 //not implemented yet 1504 #define FF_AA_FASTINT 1 //not implemented yet
1505 #define FF_AA_INT 2 1505 #define FF_AA_INT 2
1506 #define FF_AA_FLOAT 3 1506 #define FF_AA_FLOAT 3
1507 /**
1508 * Quantizer noise shaping.
1509 * - encoding: set by user
1510 * - decoding: unused
1511 */
1512 int quantizer_noise_shaping;
1507 } AVCodecContext; 1513 } AVCodecContext;
1508 1514
1509 1515
1510 /** 1516 /**
1511 * AVOption. 1517 * AVOption.