From 8653dcaf7d665b15b40ea9a560c8171b0914a882 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 15 Aug 2023 21:41:15 +0200 Subject: [PATCH] avformat/sox*: extend long name --- libavformat/soxdec.c | 2 +- libavformat/soxenc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/soxdec.c b/libavformat/soxdec.c index 4cfe7c7798..d47a8ba927 100644 --- a/libavformat/soxdec.c +++ b/libavformat/soxdec.c @@ -133,7 +133,7 @@ static int sox_read_header(AVFormatContext *s) const AVInputFormat ff_sox_demuxer = { .name = "sox", - .long_name = NULL_IF_CONFIG_SMALL("SoX native"), + .long_name = NULL_IF_CONFIG_SMALL("SoX (Sound eXchange) native"), .read_probe = sox_probe, .read_header = sox_read_header, .read_packet = ff_pcm_read_packet, diff --git a/libavformat/soxenc.c b/libavformat/soxenc.c index 062b4a3fae..359835f27b 100644 --- a/libavformat/soxenc.c +++ b/libavformat/soxenc.c @@ -107,7 +107,7 @@ static int sox_write_trailer(AVFormatContext *s) const FFOutputFormat ff_sox_muxer = { .p.name = "sox", - .p.long_name = NULL_IF_CONFIG_SMALL("SoX native"), + .p.long_name = NULL_IF_CONFIG_SMALL("SoX (Sound eXchange) native"), .p.extensions = "sox", .priv_data_size = sizeof(SoXContext), .p.audio_codec = AV_CODEC_ID_PCM_S32LE,