summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2023-08-15 21:41:15 +0200
committerPaul B Mahol <onemda@gmail.com>2023-08-15 21:42:21 +0200
commit8653dcaf7d665b15b40ea9a560c8171b0914a882 (patch)
tree4c01102c62b93ef51846193cb2c924882fddba0a
parent4d0a25d76085530a7017ae72d7d3eeab3fd6dad8 (diff)
avformat/sox*: extend long name
-rw-r--r--libavformat/soxdec.c2
-rw-r--r--libavformat/soxenc.c2
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,