diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-04-27 22:19:02 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-04-27 22:19:02 +0000 |
commit | 99e3913d39787f7a88ca70a9b0504d586a20b3fe (patch) | |
tree | 8c8a6a87f157a69bd61129fb6648dd6881c7d2af /libavcodec | |
parent | f946a9a431f93492c08a1be0117a1f51e7429136 (diff) | |
download | ffmpeg-99e3913d39787f7a88ca70a9b0504d586a20b3fe.tar.gz |
Make 8SVX codec names just a single word for consistency with other codec names.
patch by Stefano Sabatini, stefano.sabatini-lala poste it
Originally committed as revision 13008 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/8svx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/8svx.c b/libavcodec/8svx.c index 095173f349..cdbd6b791f 100644 --- a/libavcodec/8svx.c +++ b/libavcodec/8svx.c @@ -90,7 +90,7 @@ static av_cold int eightsvx_decode_init(AVCodecContext *avctx) } AVCodec eightsvx_fib_decoder = { - .name = "8svx fibonacci decoder", + .name = "8svx_fib", .type = CODEC_TYPE_AUDIO, .id = CODEC_ID_8SVX_FIB, .priv_data_size = sizeof (EightSvxContext), @@ -100,7 +100,7 @@ AVCodec eightsvx_fib_decoder = { }; AVCodec eightsvx_exp_decoder = { - .name = "8svx exponential decoder", + .name = "8svx_exp", .type = CODEC_TYPE_AUDIO, .id = CODEC_ID_8SVX_EXP, .priv_data_size = sizeof (EightSvxContext), |