diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-09-29 12:12:23 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-10-26 12:01:07 -0400 |
commit | 85579b638179f40102c4bcedb8a2dde4cf19f391 (patch) | |
tree | 941a9f45e567bb33039d8a369749051dd9fd82d6 /libavcodec/allcodecs.c | |
parent | 67a3b67c717e4e53b9217ec1d579f2dff5e46717 (diff) | |
download | ffmpeg-85579b638179f40102c4bcedb8a2dde4cf19f391.tar.gz |
avcodec: remove the Zork PCM encoder.
The Zork PCM decoder does not decode the 1 sample we have correctly, therefore
the encoder based on the decoder is also incorrect. There is no good reason to
keep the encoder.
Diffstat (limited to 'libavcodec/allcodecs.c')
-rw-r--r-- | libavcodec/allcodecs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c index 64669b7c8f..107ec310e0 100644 --- a/libavcodec/allcodecs.c +++ b/libavcodec/allcodecs.c @@ -313,7 +313,7 @@ void avcodec_register_all(void) REGISTER_ENCDEC (PCM_U24LE, pcm_u24le); REGISTER_ENCDEC (PCM_U32BE, pcm_u32be); REGISTER_ENCDEC (PCM_U32LE, pcm_u32le); - REGISTER_ENCDEC (PCM_ZORK , pcm_zork); + REGISTER_DECODER (PCM_ZORK , pcm_zork); /* DPCM codecs */ REGISTER_DECODER (INTERPLAY_DPCM, interplay_dpcm); |