add missing long_name for amv and dca encoder

Reviewed-by: Carl Eugen Hoyos
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Paul B Mahol 2011-12-10 03:29:41 +00:00 committed by Michael Niedermayer
parent 4ac862f43c
commit 85cd1eb12f
2 changed files with 2 additions and 0 deletions

View File

@ -583,4 +583,5 @@ AVCodec ff_dca_encoder = {
.encode = encode_frame,
.capabilities = CODEC_CAP_EXPERIMENTAL,
.sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_S16,AV_SAMPLE_FMT_NONE},
.long_name = NULL_IF_CONFIG_SMALL("DCA (DTS Coherent Acoustics)"),
};

View File

@ -491,4 +491,5 @@ AVCodec ff_amv_encoder = {
.encode = amv_encode_picture,
.close = MPV_encode_end,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUVJ420P, PIX_FMT_YUVJ422P, -1},
.long_name = NULL_IF_CONFIG_SMALL("AMV Video"),
};