comparison avcodec.h @ 3031:0f5f311f2f94 libavcodec

Parameter added for user to set the cutoff frequency when encoding with faac. Patch by Luca Abeni - lucabe72 at email dot it.
author banan
date Tue, 10 Jan 2006 20:07:29 +0000
parents 6bc2dc147ac5
children 0d08717a0156
comparison
equal deleted inserted replaced
3030:6bc2dc147ac5 3031:0f5f311f2f94
1980 * direct mv prediction mode - 0 (none), 1 (spatial), 2 (temporal) 1980 * direct mv prediction mode - 0 (none), 1 (spatial), 2 (temporal)
1981 * - encoding: set by user. 1981 * - encoding: set by user.
1982 * - decoding: unused 1982 * - decoding: unused
1983 */ 1983 */
1984 int directpred; 1984 int directpred;
1985
1986 /**
1987 * audio cutoff bandwidth (0 means "automatic") . Currently used only by FAAC
1988 * - encoding: set by user.
1989 * - decoding: unused
1990 */
1991 int cutoff;
1985 } AVCodecContext; 1992 } AVCodecContext;
1986 1993
1987 /** 1994 /**
1988 * AVCodec. 1995 * AVCodec.
1989 */ 1996 */