diff mbox

[FFmpeg-devel,5/6] avformat/gif: extend description

Message ID 20181212163257.9109-5-onemda@gmail.com
State Accepted
Commit 280b43246434a3b3bcab4cdce274a299ea8d0424
Headers show

Commit Message

Paul B Mahol Dec. 12, 2018, 4:32 p.m. UTC
Signed-off-by: Paul B Mahol <onemda@gmail.com>
---
 libavformat/gif.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Moritz Barsnick Dec. 13, 2018, 9:20 a.m. UTC | #1
On Wed, Dec 12, 2018 at 17:32:56 +0100, Paul B Mahol wrote:
> -    .long_name      = NULL_IF_CONFIG_SMALL("GIF Animation"),
> +    .long_name      = NULL_IF_CONFIG_SMALL("CompuServe Graphics Interchange Format (GIF)"),

Why is this string different from the one in 6/6?

Moritz
Paul B Mahol Dec. 13, 2018, 9:30 a.m. UTC | #2
On 12/13/18, Moritz Barsnick <barsnick@gmx.net> wrote:
> On Wed, Dec 12, 2018 at 17:32:56 +0100, Paul B Mahol wrote:
>> -    .long_name      = NULL_IF_CONFIG_SMALL("GIF Animation"),
>> +    .long_name      = NULL_IF_CONFIG_SMALL("CompuServe Graphics
>> Interchange Format (GIF)"),
>
> Why is this string different from the one in 6/6?

Because reasons!
diff mbox

Patch

diff --git a/libavformat/gif.c b/libavformat/gif.c
index 548abf46ba..82cad01455 100644
--- a/libavformat/gif.c
+++ b/libavformat/gif.c
@@ -202,7 +202,7 @@  static const AVClass gif_muxer_class = {
 
 AVOutputFormat ff_gif_muxer = {
     .name           = "gif",
-    .long_name      = NULL_IF_CONFIG_SMALL("GIF Animation"),
+    .long_name      = NULL_IF_CONFIG_SMALL("CompuServe Graphics Interchange Format (GIF)"),
     .mime_type      = "image/gif",
     .extensions     = "gif",
     .priv_data_size = sizeof(GIFContext),