diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-04-28 10:21:58 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-04-28 10:21:58 +0000 |
commit | 038f846e41b2ef7e760a39876beaebea999e27e9 (patch) | |
tree | 5b68a83c5cd38b8b93f256cbc9876f87f26c9a75 /libavcodec/sonic.c | |
parent | 162d4fc99d07fcd3322aee9bcc99f045463da2b7 (diff) | |
download | ffmpeg-038f846e41b2ef7e760a39876beaebea999e27e9.tar.gz |
Add long names to some AVCodec declarations.
patch by Stefano Sabatini, stefano.sabatini-lala poste it
Originally committed as revision 13010 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/sonic.c')
-rw-r--r-- | libavcodec/sonic.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/sonic.c b/libavcodec/sonic.c index 79641ae513..f9086e71a8 100644 --- a/libavcodec/sonic.c +++ b/libavcodec/sonic.c @@ -946,6 +946,7 @@ AVCodec sonic_encoder = { sonic_encode_frame, sonic_encode_close, NULL, + .long_name = "Sonic", }; AVCodec sonic_ls_encoder = { @@ -957,6 +958,7 @@ AVCodec sonic_ls_encoder = { sonic_encode_frame, sonic_encode_close, NULL, + .long_name = "Sonic lossless", }; #endif @@ -970,5 +972,6 @@ AVCodec sonic_decoder = { NULL, sonic_decode_close, sonic_decode_frame, + .long_name = "Sonic", }; #endif |