diff --git a/libavcodec/avrndec.c b/libavcodec/avrndec.c index d9f33d7..8305028 100644 --- a/libavcodec/avrndec.c +++ b/libavcodec/avrndec.c @@ -118,14 +118,14 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac } AVCodec ff_avrn_decoder = { - .name = "AVRn", + .name = "avrn", .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_AVRN, .priv_data_size = sizeof(AVRnContext), .init = init, .close = end, .decode = decode_frame, - .long_name = NULL_IF_CONFIG_SMALL("AVRn"), + .long_name = NULL_IF_CONFIG_SMALL("Avid AVI Codec"), .capabilities = CODEC_CAP_DR1, };