提交 90ac9f40 编写于 作者: P Paul B Mahol

avcodec: add QDMC decoder

Signed-off-by: NPaul B Mahol <onemda@gmail.com>
上级 49633f9f
...@@ -12,6 +12,7 @@ version <next>: ...@@ -12,6 +12,7 @@ version <next>:
- 16.8 floating point pcm decoder - 16.8 floating point pcm decoder
- 24.0 floating point pcm decoder - 24.0 floating point pcm decoder
- Apple Pixlet decoder - Apple Pixlet decoder
- QDMC audio decoder
version 3.2: version 3.2:
- libopenmpt demuxer - libopenmpt demuxer
......
...@@ -1048,6 +1048,7 @@ following image formats are supported: ...@@ -1048,6 +1048,7 @@ following image formats are supported:
@item PCM unsigned 32-bit little-endian @tab X @tab X @item PCM unsigned 32-bit little-endian @tab X @tab X
@item PCM Zork @tab @tab X @item PCM Zork @tab @tab X
@item QCELP / PureVoice @tab @tab X @item QCELP / PureVoice @tab @tab X
@item QDesign Music Codec 1 @tab @tab X
@item QDesign Music Codec 2 @tab @tab X @item QDesign Music Codec 2 @tab @tab X
@tab There are still some distortions. @tab There are still some distortions.
@item RealAudio 1.0 (14.4K) @tab X @tab X @item RealAudio 1.0 (14.4K) @tab X @tab X
......
...@@ -466,6 +466,7 @@ OBJS-$(CONFIG_QCELP_DECODER) += qcelpdec.o \ ...@@ -466,6 +466,7 @@ OBJS-$(CONFIG_QCELP_DECODER) += qcelpdec.o \
celp_filters.o acelp_vectors.o \ celp_filters.o acelp_vectors.o \
acelp_filters.o acelp_filters.o
OBJS-$(CONFIG_QDM2_DECODER) += qdm2.o OBJS-$(CONFIG_QDM2_DECODER) += qdm2.o
OBJS-$(CONFIG_QDMC_DECODER) += qdmc.o
OBJS-$(CONFIG_QDRAW_DECODER) += qdrw.o OBJS-$(CONFIG_QDRAW_DECODER) += qdrw.o
OBJS-$(CONFIG_QPEG_DECODER) += qpeg.o OBJS-$(CONFIG_QPEG_DECODER) += qpeg.o
OBJS-$(CONFIG_QTRLE_DECODER) += qtrle.o OBJS-$(CONFIG_QTRLE_DECODER) += qtrle.o
......
...@@ -449,6 +449,7 @@ void avcodec_register_all(void) ...@@ -449,6 +449,7 @@ void avcodec_register_all(void)
REGISTER_DECODER(PAF_AUDIO, paf_audio); REGISTER_DECODER(PAF_AUDIO, paf_audio);
REGISTER_DECODER(QCELP, qcelp); REGISTER_DECODER(QCELP, qcelp);
REGISTER_DECODER(QDM2, qdm2); REGISTER_DECODER(QDM2, qdm2);
REGISTER_DECODER(QDMC, qdmc);
REGISTER_ENCDEC (RA_144, ra_144); REGISTER_ENCDEC (RA_144, ra_144);
REGISTER_DECODER(RA_288, ra_288); REGISTER_DECODER(RA_288, ra_288);
REGISTER_DECODER(RALF, ralf); REGISTER_DECODER(RALF, ralf);
......
此差异已折叠。
...@@ -28,8 +28,8 @@ ...@@ -28,8 +28,8 @@
#include "libavutil/version.h" #include "libavutil/version.h"
#define LIBAVCODEC_VERSION_MAJOR 57 #define LIBAVCODEC_VERSION_MAJOR 57
#define LIBAVCODEC_VERSION_MINOR 70 #define LIBAVCODEC_VERSION_MINOR 71
#define LIBAVCODEC_VERSION_MICRO 101 #define LIBAVCODEC_VERSION_MICRO 100
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \ LIBAVCODEC_VERSION_MINOR, \
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册