diff options
author | Cameron Cawley <ccawley2011@gmail.com> | 2018-10-13 00:06:39 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2018-10-26 13:39:25 +0200 |
commit | 22238d0b9440cf55aafda42c60f4413514d4aeb8 (patch) | |
tree | a406f18615ac7d99c232d797e229c5f3a9e7417b /libavformat/pcmdec.c | |
parent | fb7925ba2fa10e1ecf63eb4bada268e25627a88d (diff) | |
download | ffmpeg-22238d0b9440cf55aafda42c60f4413514d4aeb8.tar.gz |
avcodec: Implement Archimedes VIDC encoder/decoder
Signed-off-by: Cameron Cawley <ccawley2011@gmail.com>
Diffstat (limited to 'libavformat/pcmdec.c')
-rw-r--r-- | libavformat/pcmdec.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/pcmdec.c b/libavformat/pcmdec.c index d0ceea6fa9..bd2a0384f8 100644 --- a/libavformat/pcmdec.c +++ b/libavformat/pcmdec.c @@ -177,6 +177,9 @@ PCMDEF(alaw, "PCM A-law", PCMDEF(mulaw, "PCM mu-law", "ul", AV_CODEC_ID_PCM_MULAW) +PCMDEF(vidc, "PCM Archimedes VIDC", + NULL, AV_CODEC_ID_PCM_VIDC) + static const AVOption sln_options[] = { { "sample_rate", "", offsetof(PCMAudioDemuxerContext, sample_rate), AV_OPT_TYPE_INT, {.i64 = 8000}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM }, { "channels", "", offsetof(PCMAudioDemuxerContext, channels), AV_OPT_TYPE_INT, {.i64 = 1}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM }, |