[FFmpeg-cvslog] avformat/sox*: extend long name
Paul B Mahol
git at videolan.org
Tue Aug 15 22:43:11 EEST 2023
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Tue Aug 15 21:41:15 2023 +0200| [8653dcaf7d665b15b40ea9a560c8171b0914a882] | committer: Paul B Mahol
avformat/sox*: extend long name
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8653dcaf7d665b15b40ea9a560c8171b0914a882
---
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,
More information about the ffmpeg-cvslog
mailing list