summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavcodec/4xm.c1
-rw-r--r--libavcodec/ffv1.c4
-rw-r--r--libavcodec/h263dec.c6
-rw-r--r--libavcodec/mpegvideo_enc.c6
-rw-r--r--libavcodec/msvideo1.c1
-rw-r--r--libavcodec/sonic.c3
-rw-r--r--libavcodec/zmbv.c3
-rw-r--r--libavcodec/zmbvenc.c1
8 files changed, 22 insertions, 3 deletions
diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c
index d32ee1c825..9eea643d83 100644
--- a/libavcodec/4xm.c
+++ b/libavcodec/4xm.c
@@ -836,5 +836,6 @@ AVCodec fourxm_decoder = {
decode_end,
decode_frame,
/*CODEC_CAP_DR1,*/
+ .long_name = "4X Movie",
};
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c
index 14e39ca4a2..80138b5d1e 100644
--- a/libavcodec/ffv1.c
+++ b/libavcodec/ffv1.c
@@ -1022,7 +1022,8 @@ AVCodec ffv1_decoder = {
common_end,
decode_frame,
CODEC_CAP_DR1 /*| CODEC_CAP_DRAW_HORIZ_BAND*/,
- NULL
+ NULL,
+ .long_name= "FFmpeg codec #1",
};
#ifdef CONFIG_ENCODERS
@@ -1035,5 +1036,6 @@ AVCodec ffv1_encoder = {
encode_frame,
common_end,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_YUV444P, PIX_FMT_YUV422P, PIX_FMT_YUV411P, PIX_FMT_YUV410P, PIX_FMT_RGB32, -1},
+ .long_name= "FFmpeg codec #1",
};
#endif
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index 700ff8fb85..4ecac28c79 100644
--- a/libavcodec/h263dec.c
+++ b/libavcodec/h263dec.c
@@ -736,6 +736,7 @@ AVCodec h263_decoder = {
ff_h263_decode_frame,
CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY,
.flush= ff_mpeg_flush,
+ .long_name="H.263",
};
AVCodec msmpeg4v1_decoder = {
@@ -784,6 +785,7 @@ AVCodec wmv1_decoder = {
ff_h263_decode_end,
ff_h263_decode_frame,
CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1,
+ .long_name= "Windows Media Video 7",
};
AVCodec h263i_decoder = {
@@ -796,6 +798,7 @@ AVCodec h263i_decoder = {
ff_h263_decode_end,
ff_h263_decode_frame,
CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1,
+ .long_name = "H.263i",
};
AVCodec flv_decoder = {
@@ -807,5 +810,6 @@ AVCodec flv_decoder = {
NULL,
ff_h263_decode_end,
ff_h263_decode_frame,
- CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1
+ CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1,
+ .long_name= "Flash Video",
};
diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c
index b2e3a369b8..12c660e9a5 100644
--- a/libavcodec/mpegvideo_enc.c
+++ b/libavcodec/mpegvideo_enc.c
@@ -3744,6 +3744,7 @@ AVCodec h263_encoder = {
MPV_encode_picture,
MPV_encode_end,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1},
+ .long_name= "H.263",
};
AVCodec h263p_encoder = {
@@ -3755,6 +3756,7 @@ AVCodec h263p_encoder = {
MPV_encode_picture,
MPV_encode_end,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1},
+ .long_name= "H.263+ / H.263 version 2",
};
AVCodec flv_encoder = {
@@ -3766,6 +3768,7 @@ AVCodec flv_encoder = {
MPV_encode_picture,
MPV_encode_end,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1},
+ .long_name= "Flash Video",
};
AVCodec rv10_encoder = {
@@ -3777,6 +3780,7 @@ AVCodec rv10_encoder = {
MPV_encode_picture,
MPV_encode_end,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1},
+ .long_name= "RealVideo 1.0",
};
AVCodec rv20_encoder = {
@@ -3788,6 +3792,7 @@ AVCodec rv20_encoder = {
MPV_encode_picture,
MPV_encode_end,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1},
+ .long_name= "RealVideo 2.0",
};
AVCodec mpeg4_encoder = {
@@ -3844,4 +3849,5 @@ AVCodec wmv1_encoder = {
MPV_encode_picture,
MPV_encode_end,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1},
+ .long_name= "Windows Media Video 7",
};
diff --git a/libavcodec/msvideo1.c b/libavcodec/msvideo1.c
index 31b10d5d50..854f36fb56 100644
--- a/libavcodec/msvideo1.c
+++ b/libavcodec/msvideo1.c
@@ -339,4 +339,5 @@ AVCodec msvideo1_decoder = {
msvideo1_decode_end,
msvideo1_decode_frame,
CODEC_CAP_DR1,
+ .long_name= "Microsoft Video 1",
};
diff --git a/libavcodec/sonic.c b/libavcodec/sonic.c
index 79641ae513..f9086e71a8 100644
--- a/libavcodec/sonic.c
+++ b/libavcodec/sonic.c
@@ -946,6 +946,7 @@ AVCodec sonic_encoder = {
sonic_encode_frame,
sonic_encode_close,
NULL,
+ .long_name = "Sonic",
};
AVCodec sonic_ls_encoder = {
@@ -957,6 +958,7 @@ AVCodec sonic_ls_encoder = {
sonic_encode_frame,
sonic_encode_close,
NULL,
+ .long_name = "Sonic lossless",
};
#endif
@@ -970,5 +972,6 @@ AVCodec sonic_decoder = {
NULL,
sonic_decode_close,
sonic_decode_frame,
+ .long_name = "Sonic",
};
#endif
diff --git a/libavcodec/zmbv.c b/libavcodec/zmbv.c
index 4e67aa90e1..51079fa944 100644
--- a/libavcodec/zmbv.c
+++ b/libavcodec/zmbv.c
@@ -661,6 +661,7 @@ AVCodec zmbv_decoder = {
decode_init,
NULL,
decode_end,
- decode_frame
+ decode_frame,
+ .long_name = "Zip Motion Blocks Video",
};
diff --git a/libavcodec/zmbvenc.c b/libavcodec/zmbvenc.c
index b8455480da..2feeb66605 100644
--- a/libavcodec/zmbvenc.c
+++ b/libavcodec/zmbvenc.c
@@ -319,4 +319,5 @@ AVCodec zmbv_encoder = {
encode_frame,
encode_end,
.pix_fmts = (enum PixelFormat[]){PIX_FMT_PAL8, -1},
+ .long_name = "Zip Motion Blocks Video",
};