Signed-off-by: hwren <hwrenx@126.com> Signed-off-by: Gyan Doshi <ffmpeg@gyani.pro>tags/n4.1
| @@ -49,7 +49,7 @@ top-field-first is assumed | |||||
| @section libdavs2 | @section libdavs2 | ||||
| AVS2/IEEE 1857.4 video decoder wrapper. | |||||
| AVS2-P2/IEEE1857.4 video decoder wrapper. | |||||
| This decoder allows libavcodec to decode AVS2 streams with davs2 library. | This decoder allows libavcodec to decode AVS2 streams with davs2 library. | ||||
| @@ -19,7 +19,7 @@ explicitly requested by passing the appropriate flags to | |||||
| @section libdavs2 | @section libdavs2 | ||||
| FFmpeg can make use of the davs2 library for AVS2/IEEE 1857.4 video decoding. | |||||
| FFmpeg can make use of the davs2 library for AVS2-P2/IEEE1857.4 video decoding. | |||||
| Go to @url{https://github.com/pkuvcl/davs2} and follow the instructions for | Go to @url{https://github.com/pkuvcl/davs2} and follow the instructions for | ||||
| installing the library. Then pass @code{--enable-libdavs2} to configure to | installing the library. Then pass @code{--enable-libdavs2} to configure to | ||||
| @@ -1,5 +1,5 @@ | |||||
| /* | /* | ||||
| * AVS2/IEEE 1857.4 video parser. | |||||
| * AVS2-P2/IEEE1857.4 video parser. | |||||
| * Copyright (c) 2018 Huiwen Ren <hwrenx@gmail.com> | * Copyright (c) 2018 Huiwen Ren <hwrenx@gmail.com> | ||||
| * | * | ||||
| * This file is part of FFmpeg. | * This file is part of FFmpeg. | ||||
| @@ -1398,7 +1398,7 @@ static const AVCodecDescriptor codec_descriptors[] = { | |||||
| .id = AV_CODEC_ID_AVS2, | .id = AV_CODEC_ID_AVS2, | ||||
| .type = AVMEDIA_TYPE_VIDEO, | .type = AVMEDIA_TYPE_VIDEO, | ||||
| .name = "avs2", | .name = "avs2", | ||||
| .long_name = NULL_IF_CONFIG_SMALL("AVS2/IEEE 1857.4"), | |||||
| .long_name = NULL_IF_CONFIG_SMALL("AVS2-P2/IEEE1857.4"), | |||||
| .props = AV_CODEC_PROP_LOSSY, | .props = AV_CODEC_PROP_LOSSY, | ||||
| }, | }, | ||||
| { | { | ||||
| @@ -163,7 +163,7 @@ static int davs2_decode_frame(AVCodecContext *avctx, void *data, | |||||
| AVCodec ff_libdavs2_decoder = { | AVCodec ff_libdavs2_decoder = { | ||||
| .name = "libdavs2", | .name = "libdavs2", | ||||
| .long_name = NULL_IF_CONFIG_SMALL("Decoder for AVS2/IEEE 1857.4"), | |||||
| .long_name = NULL_IF_CONFIG_SMALL("libdavs2 AVS2-P2/IEEE1857.4"), | |||||
| .type = AVMEDIA_TYPE_VIDEO, | .type = AVMEDIA_TYPE_VIDEO, | ||||
| .id = AV_CODEC_ID_AVS2, | .id = AV_CODEC_ID_AVS2, | ||||
| .priv_data_size = sizeof(DAVS2Context), | .priv_data_size = sizeof(DAVS2Context), | ||||