diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-10-06 20:17:10 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-10-06 20:17:10 +0000 |
commit | ee3d03bf4ec6c4e5b9eec20a6f69d39d617a2980 (patch) | |
tree | 5650b590606d9c77db91f25b6d406f3e8694396c | |
parent | 8ec328668a7d10c8224ae5f591add5b388ea82ed (diff) | |
download | ffmpeg-ee3d03bf4ec6c4e5b9eec20a6f69d39d617a2980.tar.gz |
avcodec/dpx: make .long_name more descriptive
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavcodec/codec_desc.c | 2 | ||||
-rw-r--r-- | libavcodec/dpx.c | 2 | ||||
-rw-r--r-- | libavcodec/dpxenc.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index 6ec9cefac7..935df11995 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 e4c624c7c6..47906d72c2 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 1f1c7720a5..997e3d651c 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), |