X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fbmp.c;h=e97038c5fe194160c5e4ae1329265e9ef6cc7ad5;hb=2b02bc64226ad645e6f97f955bff3fcaf731b25a;hp=b6bc8306625ecc0fda683c42e6072c7f5aa3258c;hpb=65e63072f81641f50e5775be5c3b2873e8d6f38e;p=ffmpeg diff --git a/libavcodec/bmp.c b/libavcodec/bmp.c index b6bc8306625..e97038c5fe1 100644 --- a/libavcodec/bmp.c +++ b/libavcodec/bmp.c @@ -352,11 +352,11 @@ static av_cold int bmp_decode_end(AVCodecContext *avctx) AVCodec ff_bmp_decoder = { .name = "bmp", .type = AVMEDIA_TYPE_VIDEO, - .id = CODEC_ID_BMP, + .id = AV_CODEC_ID_BMP, .priv_data_size = sizeof(BMPContext), .init = bmp_decode_init, .close = bmp_decode_end, .decode = bmp_decode_frame, .capabilities = CODEC_CAP_DR1, - .long_name = NULL_IF_CONFIG_SMALL("BMP image"), + .long_name = NULL_IF_CONFIG_SMALL("BMP (Windows and OS/2 bitmap)"), };