[FFmpeg-cvslog] avcodec/dpx: make .long_name more descriptive

Paul B Mahol git at videolan.org
Sun Oct 6 22:22:53 CEST 2013


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sun Oct  6 20:17:10 2013 +0000| [ee3d03bf4ec6c4e5b9eec20a6f69d39d617a2980] | committer: Paul B Mahol

avcodec/dpx: make .long_name more descriptive

Signed-off-by: Paul B Mahol <onemda at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ee3d03bf4ec6c4e5b9eec20a6f69d39d617a2980
---

 libavcodec/codec_desc.c |    2 +-
 libavcodec/dpx.c        |    2 +-
 libavcodec/dpxenc.c     |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c
index 6ec9cef..935df11 100644
--- a/libavcodec/codec_desc.c
+++ b/libavcodec/codec_desc.c
@@ -950,7 +950,7 @@ static const AVCodecDescriptor codec_descriptors[] = {
         .id        = AV_CODEC_ID_DPX,
         .type      = AVMEDIA_TYPE_VIDEO,
         .name      = "dpx",
-        .long_name = NULL_IF_CONFIG_SMALL("DPX image"),
+        .long_name = NULL_IF_CONFIG_SMALL("DPX (Digital Picture Exchange) image"),
         .props     = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSLESS,
     },
     {
diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c
index e4c624c..47906d7 100644
--- a/libavcodec/dpx.c
+++ b/libavcodec/dpx.c
@@ -270,7 +270,7 @@ static int decode_frame(AVCodecContext *avctx,
 
 AVCodec ff_dpx_decoder = {
     .name           = "dpx",
-    .long_name      = NULL_IF_CONFIG_SMALL("DPX image"),
+    .long_name      = NULL_IF_CONFIG_SMALL("DPX (Digital Picture Exchange) image"),
     .type           = AVMEDIA_TYPE_VIDEO,
     .id             = AV_CODEC_ID_DPX,
     .decode         = decode_frame,
diff --git a/libavcodec/dpxenc.c b/libavcodec/dpxenc.c
index 1f1c772..997e3d6 100644
--- a/libavcodec/dpxenc.c
+++ b/libavcodec/dpxenc.c
@@ -235,7 +235,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
 
 AVCodec ff_dpx_encoder = {
     .name           = "dpx",
-    .long_name      = NULL_IF_CONFIG_SMALL("DPX image"),
+    .long_name      = NULL_IF_CONFIG_SMALL("DPX (Digital Picture Exchange) image"),
     .type           = AVMEDIA_TYPE_VIDEO,
     .id             = AV_CODEC_ID_DPX,
     .priv_data_size = sizeof(DPXContext),



More information about the ffmpeg-cvslog mailing list