diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-07-24 03:23:48 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-07-30 20:46:55 +0200 |
commit | 0177b7d23aadeab218601893953f0a05209d037c (patch) | |
tree | c55b0f2bbca87f7c88982e29922c99e59c1cd559 /libavcodec/libilbc.c | |
parent | 6774247a9d7d15033c2b80118c03cb0cb10027df (diff) | |
download | ffmpeg-0177b7d23aadeab218601893953f0a05209d037c.tar.gz |
Improve descriptiveness of a number of codec and container long names
Diffstat (limited to 'libavcodec/libilbc.c')
-rw-r--r-- | libavcodec/libilbc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/libilbc.c b/libavcodec/libilbc.c index 1c056d5cd7..5179c375b2 100644 --- a/libavcodec/libilbc.c +++ b/libavcodec/libilbc.c @@ -111,7 +111,7 @@ AVCodec ff_libilbc_decoder = { .init = ilbc_decode_init, .decode = ilbc_decode_frame, .capabilities = CODEC_CAP_DR1, - .long_name = NULL_IF_CONFIG_SMALL("Internet Low Bitrate Codec (iLBC)"), + .long_name = NULL_IF_CONFIG_SMALL("iLBC (Internet Low Bitrate Codec)"), .priv_class = &ilbc_dec_class, }; @@ -203,7 +203,7 @@ AVCodec ff_libilbc_encoder = { .close = ilbc_encode_close, .sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_NONE }, - .long_name = NULL_IF_CONFIG_SMALL("Internet Low Bitrate Codec (iLBC)"), + .long_name = NULL_IF_CONFIG_SMALL("iLBC (Internet Low Bitrate Codec)"), .defaults = ilbc_encode_defaults, .priv_class = &ilbc_enc_class, }; |