mirror of https://git.ffmpeg.org/ffmpeg.git
Replace general CONFIG_ENCODERS by more fine-grained CONFIG_WMV2_ENCODER.
Originally committed as revision 8952 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
f96829d2d0
commit
686dcc1167
|
@ -61,7 +61,7 @@ static void wmv2_common_init(Wmv2Context * w){
|
||||||
ff_init_scantable(s->dsp.idct_permutation, &w->abt_scantable[1], wmv2_scantableB);
|
ff_init_scantable(s->dsp.idct_permutation, &w->abt_scantable[1], wmv2_scantableB);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_ENCODERS
|
#ifdef CONFIG_WMV2_ENCODER
|
||||||
|
|
||||||
static int encode_ext_header(Wmv2Context *w){
|
static int encode_ext_header(Wmv2Context *w){
|
||||||
MpegEncContext * const s= &w->s;
|
MpegEncContext * const s= &w->s;
|
||||||
|
@ -263,7 +263,7 @@ void ff_wmv2_encode_mb(MpegEncContext * s,
|
||||||
msmpeg4_encode_block(s, block[i], i);
|
msmpeg4_encode_block(s, block[i], i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif //CONFIG_ENCODERS
|
#endif //CONFIG_WMV2_ENCODER
|
||||||
|
|
||||||
static void parse_mb_skip(Wmv2Context * w){
|
static void parse_mb_skip(Wmv2Context * w){
|
||||||
int mb_x, mb_y;
|
int mb_x, mb_y;
|
||||||
|
@ -849,7 +849,7 @@ AVCodec wmv2_decoder = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_ENCODERS
|
#ifdef CONFIG_WMV2_ENCODER
|
||||||
AVCodec wmv2_encoder = {
|
AVCodec wmv2_encoder = {
|
||||||
"wmv2",
|
"wmv2",
|
||||||
CODEC_TYPE_VIDEO,
|
CODEC_TYPE_VIDEO,
|
||||||
|
|
Loading…
Reference in New Issue