Add long names to many AVCodec declarations.
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13005 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
3ddf7fe945
commit
d5202e4fda
@ -96,6 +96,7 @@ AVCodec eightsvx_fib_decoder = {
|
|||||||
.priv_data_size = sizeof (EightSvxContext),
|
.priv_data_size = sizeof (EightSvxContext),
|
||||||
.init = eightsvx_decode_init,
|
.init = eightsvx_decode_init,
|
||||||
.decode = eightsvx_decode_frame,
|
.decode = eightsvx_decode_frame,
|
||||||
|
.long_name = "8SVX fibonacci",
|
||||||
};
|
};
|
||||||
|
|
||||||
AVCodec eightsvx_exp_decoder = {
|
AVCodec eightsvx_exp_decoder = {
|
||||||
@ -105,4 +106,5 @@ AVCodec eightsvx_exp_decoder = {
|
|||||||
.priv_data_size = sizeof (EightSvxContext),
|
.priv_data_size = sizeof (EightSvxContext),
|
||||||
.init = eightsvx_decode_init,
|
.init = eightsvx_decode_init,
|
||||||
.decode = eightsvx_decode_frame,
|
.decode = eightsvx_decode_frame,
|
||||||
|
.long_name = "8SVX exponential",
|
||||||
};
|
};
|
||||||
|
@ -171,4 +171,5 @@ AVCodec aasc_decoder = {
|
|||||||
aasc_decode_end,
|
aasc_decode_end,
|
||||||
aasc_decode_frame,
|
aasc_decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "Autodesk RLE",
|
||||||
};
|
};
|
||||||
|
@ -165,5 +165,6 @@ AVCodec adpcm_adx_decoder = {
|
|||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
adx_decode_frame,
|
adx_decode_frame,
|
||||||
|
.long_name = "SEGA CRI ADX",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -190,4 +190,5 @@ AVCodec adpcm_adx_encoder = {
|
|||||||
adx_encode_frame,
|
adx_encode_frame,
|
||||||
adx_encode_close,
|
adx_encode_close,
|
||||||
NULL,
|
NULL,
|
||||||
|
.long_name = "SEGA CRI ADX",
|
||||||
};
|
};
|
||||||
|
@ -619,4 +619,5 @@ AVCodec alac_decoder = {
|
|||||||
NULL,
|
NULL,
|
||||||
alac_decode_close,
|
alac_decode_close,
|
||||||
alac_decode_frame,
|
alac_decode_frame,
|
||||||
|
.long_name = "ALAC (Apple Lossless Audio Codec)",
|
||||||
};
|
};
|
||||||
|
@ -640,6 +640,7 @@ AVCodec asv1_encoder = {
|
|||||||
encode_frame,
|
encode_frame,
|
||||||
//encode_end,
|
//encode_end,
|
||||||
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1},
|
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1},
|
||||||
|
.long_name= "ASUS V1",
|
||||||
};
|
};
|
||||||
|
|
||||||
AVCodec asv2_encoder = {
|
AVCodec asv2_encoder = {
|
||||||
@ -651,6 +652,7 @@ AVCodec asv2_encoder = {
|
|||||||
encode_frame,
|
encode_frame,
|
||||||
//encode_end,
|
//encode_end,
|
||||||
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1},
|
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1},
|
||||||
|
.long_name= "ASUS V2",
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //CONFIG_ENCODERS
|
#endif //CONFIG_ENCODERS
|
||||||
|
@ -1065,4 +1065,5 @@ AVCodec atrac3_decoder =
|
|||||||
.init = atrac3_decode_init,
|
.init = atrac3_decode_init,
|
||||||
.close = atrac3_decode_close,
|
.close = atrac3_decode_close,
|
||||||
.decode = atrac3_decode_frame,
|
.decode = atrac3_decode_frame,
|
||||||
|
.long_name = "Atrac 3 (Adaptive TRansform Acoustic Coding 3)",
|
||||||
};
|
};
|
||||||
|
@ -136,4 +136,5 @@ AVCodec bethsoftvid_decoder = {
|
|||||||
.init = bethsoftvid_decode_init,
|
.init = bethsoftvid_decode_init,
|
||||||
.close = bethsoftvid_decode_end,
|
.close = bethsoftvid_decode_end,
|
||||||
.decode = bethsoftvid_decode_frame,
|
.decode = bethsoftvid_decode_frame,
|
||||||
|
.long_name = "Bethesda VID video",
|
||||||
};
|
};
|
||||||
|
@ -250,4 +250,5 @@ AVCodec c93_decoder = {
|
|||||||
decode_end,
|
decode_end,
|
||||||
decode_frame,
|
decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "Interplay C93",
|
||||||
};
|
};
|
||||||
|
@ -699,4 +699,5 @@ AVCodec cavs_decoder = {
|
|||||||
cavs_decode_frame,
|
cavs_decode_frame,
|
||||||
CODEC_CAP_DR1 | CODEC_CAP_DELAY,
|
CODEC_CAP_DR1 | CODEC_CAP_DELAY,
|
||||||
.flush= cavs_flush,
|
.flush= cavs_flush,
|
||||||
|
.long_name= "Chinese AVS video (AVS1-P2, JiZhun profile)",
|
||||||
};
|
};
|
||||||
|
@ -463,4 +463,5 @@ AVCodec cinepak_decoder = {
|
|||||||
cinepak_decode_end,
|
cinepak_decode_end,
|
||||||
cinepak_decode_frame,
|
cinepak_decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "Cinepak",
|
||||||
};
|
};
|
||||||
|
@ -140,6 +140,7 @@ AVCodec cljr_decoder = {
|
|||||||
NULL,
|
NULL,
|
||||||
decode_frame,
|
decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "Cirrus Logic AccuPak",
|
||||||
};
|
};
|
||||||
#if 0
|
#if 0
|
||||||
#ifdef CONFIG_ENCODERS
|
#ifdef CONFIG_ENCODERS
|
||||||
@ -152,6 +153,7 @@ AVCodec cljr_encoder = {
|
|||||||
encode_init,
|
encode_init,
|
||||||
encode_frame,
|
encode_frame,
|
||||||
//encode_end,
|
//encode_end,
|
||||||
|
.long_name = "Cirrus Logic AccuPak",
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //CONFIG_ENCODERS
|
#endif //CONFIG_ENCODERS
|
||||||
|
@ -1206,4 +1206,5 @@ AVCodec cook_decoder =
|
|||||||
.init = cook_decode_init,
|
.init = cook_decode_init,
|
||||||
.close = cook_decode_close,
|
.close = cook_decode_close,
|
||||||
.decode = cook_decode_frame,
|
.decode = cook_decode_frame,
|
||||||
|
.long_name = "COOK",
|
||||||
};
|
};
|
||||||
|
@ -258,5 +258,6 @@ AVCodec cscd_decoder = {
|
|||||||
decode_end,
|
decode_end,
|
||||||
decode_frame,
|
decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "CamStudio",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -180,6 +180,7 @@ AVCodec cyuv_decoder = {
|
|||||||
cyuv_decode_end,
|
cyuv_decode_end,
|
||||||
cyuv_decode_frame,
|
cyuv_decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
NULL
|
NULL,
|
||||||
|
.long_name = "Creative YUV (CYUV)",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1264,4 +1264,5 @@ AVCodec dca_decoder = {
|
|||||||
.priv_data_size = sizeof(DCAContext),
|
.priv_data_size = sizeof(DCAContext),
|
||||||
.init = dca_decode_init,
|
.init = dca_decode_init,
|
||||||
.decode = dca_decode_frame,
|
.decode = dca_decode_frame,
|
||||||
|
.long_name = "DCA (DTS Coherent Acoustics)",
|
||||||
};
|
};
|
||||||
|
@ -342,4 +342,5 @@ AVCodec dnxhd_decoder = {
|
|||||||
dnxhd_decode_close,
|
dnxhd_decode_close,
|
||||||
dnxhd_decode_frame,
|
dnxhd_decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "VC3/DNxHD",
|
||||||
};
|
};
|
||||||
|
@ -844,4 +844,5 @@ AVCodec dnxhd_encoder = {
|
|||||||
dnxhd_encode_picture,
|
dnxhd_encode_picture,
|
||||||
dnxhd_encode_end,
|
dnxhd_encode_end,
|
||||||
.pix_fmts = (enum PixelFormat[]){PIX_FMT_YUV422P, -1},
|
.pix_fmts = (enum PixelFormat[]){PIX_FMT_YUV422P, -1},
|
||||||
|
.long_name = "VC3/DNxHD",
|
||||||
};
|
};
|
||||||
|
@ -380,5 +380,6 @@ AVCodec escape124_decoder = {
|
|||||||
escape124_decode_close,
|
escape124_decode_close,
|
||||||
escape124_decode_frame,
|
escape124_decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "Escape 124",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -768,4 +768,5 @@ AVCodec flac_decoder = {
|
|||||||
flac_decode_close,
|
flac_decode_close,
|
||||||
flac_decode_frame,
|
flac_decode_frame,
|
||||||
.flush= flac_flush,
|
.flush= flac_flush,
|
||||||
|
.long_name= "FLAC (Free Lossless Audio Codec)"
|
||||||
};
|
};
|
||||||
|
@ -1492,4 +1492,5 @@ AVCodec flac_encoder = {
|
|||||||
flac_encode_close,
|
flac_encode_close,
|
||||||
NULL,
|
NULL,
|
||||||
.capabilities = CODEC_CAP_SMALL_LAST_FRAME,
|
.capabilities = CODEC_CAP_SMALL_LAST_FRAME,
|
||||||
|
.long_name = "FLAC (Free Lossless Audio Codec)",
|
||||||
};
|
};
|
||||||
|
@ -255,4 +255,5 @@ AVCodec flashsv_decoder = {
|
|||||||
flashsv_decode_frame,
|
flashsv_decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
.pix_fmts = (enum PixelFormat[]){PIX_FMT_BGR24, -1},
|
.pix_fmts = (enum PixelFormat[]){PIX_FMT_BGR24, -1},
|
||||||
|
.long_name = "Flash Screen Video",
|
||||||
};
|
};
|
||||||
|
@ -293,5 +293,6 @@ AVCodec flashsv_encoder = {
|
|||||||
flashsv_encode_frame,
|
flashsv_encode_frame,
|
||||||
flashsv_encode_end,
|
flashsv_encode_end,
|
||||||
.pix_fmts = (enum PixelFormat[]){PIX_FMT_BGR24, -1},
|
.pix_fmts = (enum PixelFormat[]){PIX_FMT_BGR24, -1},
|
||||||
|
.long_name = "Flash Screen Video",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -365,4 +365,5 @@ AVCodec fraps_decoder = {
|
|||||||
decode_end,
|
decode_end,
|
||||||
decode_frame,
|
decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "Fraps",
|
||||||
};
|
};
|
||||||
|
@ -413,6 +413,7 @@ AVCodec adpcm_g726_encoder = {
|
|||||||
g726_encode_frame,
|
g726_encode_frame,
|
||||||
g726_close,
|
g726_close,
|
||||||
NULL,
|
NULL,
|
||||||
|
.long_name = "G.726 ADPCM",
|
||||||
};
|
};
|
||||||
#endif //CONFIG_ENCODERS
|
#endif //CONFIG_ENCODERS
|
||||||
|
|
||||||
@ -425,4 +426,5 @@ AVCodec adpcm_g726_decoder = {
|
|||||||
NULL,
|
NULL,
|
||||||
g726_close,
|
g726_close,
|
||||||
g726_decode_frame,
|
g726_decode_frame,
|
||||||
|
.long_name = "G.726 ADPCM",
|
||||||
};
|
};
|
||||||
|
@ -647,4 +647,5 @@ AVCodec h261_decoder = {
|
|||||||
h261_decode_end,
|
h261_decode_end,
|
||||||
h261_decode_frame,
|
h261_decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "H.261",
|
||||||
};
|
};
|
||||||
|
@ -330,5 +330,6 @@ AVCodec h261_encoder = {
|
|||||||
MPV_encode_picture,
|
MPV_encode_picture,
|
||||||
MPV_encode_end,
|
MPV_encode_end,
|
||||||
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1},
|
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1},
|
||||||
|
.long_name= "H.261",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -813,4 +813,5 @@ AVCodec imc_decoder = {
|
|||||||
.init = imc_decode_init,
|
.init = imc_decode_init,
|
||||||
.close = imc_decode_close,
|
.close = imc_decode_close,
|
||||||
.decode = imc_decode_frame,
|
.decode = imc_decode_frame,
|
||||||
|
.long_name = "IMC (Intel Music Codec)",
|
||||||
};
|
};
|
||||||
|
@ -219,4 +219,5 @@ AVCodec indeo2_decoder = {
|
|||||||
NULL,
|
NULL,
|
||||||
ir2_decode_frame,
|
ir2_decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "Intel Indeo 2",
|
||||||
};
|
};
|
||||||
|
@ -1134,5 +1134,6 @@ AVCodec indeo3_decoder = {
|
|||||||
indeo3_decode_end,
|
indeo3_decode_end,
|
||||||
indeo3_decode_frame,
|
indeo3_decode_frame,
|
||||||
0,
|
0,
|
||||||
NULL
|
NULL,
|
||||||
|
.long_name = "Intel Indeo 3",
|
||||||
};
|
};
|
||||||
|
@ -942,4 +942,5 @@ AVCodec interplay_video_decoder = {
|
|||||||
ipvideo_decode_end,
|
ipvideo_decode_end,
|
||||||
ipvideo_decode_frame,
|
ipvideo_decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "Interplay MVE Video",
|
||||||
};
|
};
|
||||||
|
@ -282,4 +282,5 @@ AVCodec loco_decoder = {
|
|||||||
NULL,
|
NULL,
|
||||||
decode_frame,
|
decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "LOCO",
|
||||||
};
|
};
|
||||||
|
@ -437,6 +437,7 @@ AVCodec mace3_decoder = {
|
|||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
mace_decode_frame,
|
mace_decode_frame,
|
||||||
|
.long_name = "MACE (Macintosh Audio Compression/Expansion) 3:1",
|
||||||
};
|
};
|
||||||
|
|
||||||
AVCodec mace6_decoder = {
|
AVCodec mace6_decoder = {
|
||||||
@ -448,5 +449,6 @@ AVCodec mace6_decoder = {
|
|||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
mace_decode_frame,
|
mace_decode_frame,
|
||||||
|
.long_name = "MACE (Macintosh Audio Compression/Expansion) 6:1",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -386,4 +386,5 @@ AVCodec mimic_decoder = {
|
|||||||
mimic_decode_end,
|
mimic_decode_end,
|
||||||
mimic_decode_frame,
|
mimic_decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "Mimic",
|
||||||
};
|
};
|
||||||
|
@ -1363,7 +1363,8 @@ AVCodec mjpeg_decoder = {
|
|||||||
ff_mjpeg_decode_end,
|
ff_mjpeg_decode_end,
|
||||||
ff_mjpeg_decode_frame,
|
ff_mjpeg_decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
NULL
|
NULL,
|
||||||
|
.long_name = "MJPEG (Motion JPEG)",
|
||||||
};
|
};
|
||||||
|
|
||||||
AVCodec thp_decoder = {
|
AVCodec thp_decoder = {
|
||||||
@ -1376,5 +1377,6 @@ AVCodec thp_decoder = {
|
|||||||
ff_mjpeg_decode_end,
|
ff_mjpeg_decode_end,
|
||||||
ff_mjpeg_decode_frame,
|
ff_mjpeg_decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
NULL
|
NULL,
|
||||||
|
.long_name = "Nintendo Gamecube THP video",
|
||||||
};
|
};
|
||||||
|
@ -455,4 +455,5 @@ AVCodec mjpeg_encoder = {
|
|||||||
MPV_encode_picture,
|
MPV_encode_picture,
|
||||||
MPV_encode_end,
|
MPV_encode_end,
|
||||||
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUVJ420P, PIX_FMT_YUVJ422P, -1},
|
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUVJ420P, PIX_FMT_YUVJ422P, -1},
|
||||||
|
.long_name= "MJPEG (Motion JPEG)",
|
||||||
};
|
};
|
||||||
|
@ -202,4 +202,5 @@ AVCodec mmvideo_decoder = {
|
|||||||
mm_decode_end,
|
mm_decode_end,
|
||||||
mm_decode_frame,
|
mm_decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "American Laser Games MM Video",
|
||||||
};
|
};
|
||||||
|
@ -273,4 +273,5 @@ AVCodec mpc7_decoder = {
|
|||||||
NULL,
|
NULL,
|
||||||
mpc7_decode_frame,
|
mpc7_decode_frame,
|
||||||
.flush = mpc7_decode_flush,
|
.flush = mpc7_decode_flush,
|
||||||
|
.long_name = "Musepack SV7",
|
||||||
};
|
};
|
||||||
|
@ -361,4 +361,5 @@ AVCodec mpc8_decoder = {
|
|||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
mpc8_decode_frame,
|
mpc8_decode_frame,
|
||||||
|
.long_name = "Musepack SV8",
|
||||||
};
|
};
|
||||||
|
@ -395,5 +395,6 @@ AVCodec nellymoser_decoder = {
|
|||||||
NULL,
|
NULL,
|
||||||
decode_end,
|
decode_end,
|
||||||
decode_tag,
|
decode_tag,
|
||||||
|
.long_name = "Nellymoser",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -271,5 +271,6 @@ AVCodec nuv_decoder = {
|
|||||||
decode_end,
|
decode_end,
|
||||||
decode_frame,
|
decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "NuppelVideo",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -151,4 +151,5 @@ AVCodec qdraw_decoder = {
|
|||||||
NULL,
|
NULL,
|
||||||
decode_frame,
|
decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "Apple QuickDraw",
|
||||||
};
|
};
|
||||||
|
@ -316,4 +316,5 @@ AVCodec qpeg_decoder = {
|
|||||||
decode_end,
|
decode_end,
|
||||||
decode_frame,
|
decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "Q-team QPEG",
|
||||||
};
|
};
|
||||||
|
@ -532,4 +532,5 @@ AVCodec shorten_decoder = {
|
|||||||
shorten_decode_close,
|
shorten_decode_close,
|
||||||
shorten_decode_frame,
|
shorten_decode_frame,
|
||||||
.flush= shorten_flush,
|
.flush= shorten_flush,
|
||||||
|
.long_name= "Shorten",
|
||||||
};
|
};
|
||||||
|
@ -198,7 +198,8 @@ AVCodec sp5x_decoder = {
|
|||||||
ff_mjpeg_decode_end,
|
ff_mjpeg_decode_end,
|
||||||
sp5x_decode_frame,
|
sp5x_decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
NULL
|
NULL,
|
||||||
|
.long_name = "Sunplus JPEG (SP5X)"
|
||||||
};
|
};
|
||||||
|
|
||||||
AVCodec amv_decoder = {
|
AVCodec amv_decoder = {
|
||||||
@ -209,5 +210,6 @@ AVCodec amv_decoder = {
|
|||||||
ff_mjpeg_decode_init,
|
ff_mjpeg_decode_init,
|
||||||
NULL,
|
NULL,
|
||||||
ff_mjpeg_decode_end,
|
ff_mjpeg_decode_end,
|
||||||
sp5x_decode_frame
|
sp5x_decode_frame,
|
||||||
|
.long_name = "AMV Video",
|
||||||
};
|
};
|
||||||
|
@ -380,4 +380,5 @@ AVCodec truespeech_decoder = {
|
|||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
truespeech_decode_frame,
|
truespeech_decode_frame,
|
||||||
|
.long_name = "DSP Group TrueSpeech",
|
||||||
};
|
};
|
||||||
|
@ -341,5 +341,6 @@ AVCodec tscc_decoder = {
|
|||||||
decode_end,
|
decode_end,
|
||||||
decode_frame,
|
decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "TechSmith Screen Capture Codec",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -277,6 +277,7 @@ AVCodec vb_decoder = {
|
|||||||
decode_init,
|
decode_init,
|
||||||
NULL,
|
NULL,
|
||||||
decode_end,
|
decode_end,
|
||||||
decode_frame
|
decode_frame,
|
||||||
|
.long_name = "Beam Software VB",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -172,6 +172,7 @@ AVCodec vcr1_decoder = {
|
|||||||
NULL,
|
NULL,
|
||||||
decode_frame,
|
decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "ATI VCR1",
|
||||||
};
|
};
|
||||||
#if 0
|
#if 0
|
||||||
#ifdef CONFIG_ENCODERS
|
#ifdef CONFIG_ENCODERS
|
||||||
@ -184,6 +185,7 @@ AVCodec vcr1_encoder = {
|
|||||||
encode_init,
|
encode_init,
|
||||||
encode_frame,
|
encode_frame,
|
||||||
//encode_end,
|
//encode_end,
|
||||||
|
.long_name = "ATI VCR1",
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //CONFIG_ENCODERS
|
#endif //CONFIG_ENCODERS
|
||||||
|
@ -1634,5 +1634,6 @@ AVCodec vorbis_decoder = {
|
|||||||
NULL,
|
NULL,
|
||||||
vorbis_decode_close,
|
vorbis_decode_close,
|
||||||
vorbis_decode_frame,
|
vorbis_decode_frame,
|
||||||
|
.long_name = "Vorbis",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1084,4 +1084,5 @@ AVCodec vorbis_encoder = {
|
|||||||
vorbis_encode_frame,
|
vorbis_encode_frame,
|
||||||
vorbis_encode_close,
|
vorbis_encode_close,
|
||||||
.capabilities= CODEC_CAP_DELAY,
|
.capabilities= CODEC_CAP_DELAY,
|
||||||
|
.long_name = "Vorbis",
|
||||||
};
|
};
|
||||||
|
@ -2634,7 +2634,8 @@ AVCodec theora_decoder = {
|
|||||||
vp3_decode_end,
|
vp3_decode_end,
|
||||||
vp3_decode_frame,
|
vp3_decode_frame,
|
||||||
0,
|
0,
|
||||||
NULL
|
NULL,
|
||||||
|
.long_name = "Theora",
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -2648,5 +2649,6 @@ AVCodec vp3_decoder = {
|
|||||||
vp3_decode_end,
|
vp3_decode_end,
|
||||||
vp3_decode_frame,
|
vp3_decode_frame,
|
||||||
0,
|
0,
|
||||||
NULL
|
NULL,
|
||||||
|
.long_name = "On2 VP3",
|
||||||
};
|
};
|
||||||
|
@ -292,4 +292,5 @@ AVCodec vp5_decoder = {
|
|||||||
vp56_free,
|
vp56_free,
|
||||||
vp56_decode_frame,
|
vp56_decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "On2 VP5",
|
||||||
};
|
};
|
||||||
|
@ -582,4 +582,5 @@ AVCodec wavpack_decoder = {
|
|||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
wavpack_decode_frame,
|
wavpack_decode_frame,
|
||||||
|
.long_name = "WavPack",
|
||||||
};
|
};
|
||||||
|
@ -862,6 +862,7 @@ AVCodec wmav1_decoder =
|
|||||||
NULL,
|
NULL,
|
||||||
ff_wma_end,
|
ff_wma_end,
|
||||||
wma_decode_superframe,
|
wma_decode_superframe,
|
||||||
|
.long_name = "Windows Media Audio 1",
|
||||||
};
|
};
|
||||||
|
|
||||||
AVCodec wmav2_decoder =
|
AVCodec wmav2_decoder =
|
||||||
@ -874,4 +875,5 @@ AVCodec wmav2_decoder =
|
|||||||
NULL,
|
NULL,
|
||||||
ff_wma_end,
|
ff_wma_end,
|
||||||
wma_decode_superframe,
|
wma_decode_superframe,
|
||||||
|
.long_name = "Windows Media Audio 2",
|
||||||
};
|
};
|
||||||
|
@ -387,6 +387,7 @@ AVCodec wmav1_encoder =
|
|||||||
encode_init,
|
encode_init,
|
||||||
encode_superframe,
|
encode_superframe,
|
||||||
ff_wma_end,
|
ff_wma_end,
|
||||||
|
.long_name = "Windows Media Audio 1",
|
||||||
};
|
};
|
||||||
|
|
||||||
AVCodec wmav2_encoder =
|
AVCodec wmav2_encoder =
|
||||||
@ -398,4 +399,5 @@ AVCodec wmav2_encoder =
|
|||||||
encode_init,
|
encode_init,
|
||||||
encode_superframe,
|
encode_superframe,
|
||||||
ff_wma_end,
|
ff_wma_end,
|
||||||
|
.long_name = "Windows Media Audio 2",
|
||||||
};
|
};
|
||||||
|
@ -492,4 +492,5 @@ AVCodec wmv2_decoder = {
|
|||||||
wmv2_decode_end,
|
wmv2_decode_end,
|
||||||
ff_h263_decode_frame,
|
ff_h263_decode_frame,
|
||||||
CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1,
|
CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1,
|
||||||
|
.long_name = "Windows Media Video 8",
|
||||||
};
|
};
|
||||||
|
@ -237,4 +237,5 @@ AVCodec wmv2_encoder = {
|
|||||||
MPV_encode_picture,
|
MPV_encode_picture,
|
||||||
MPV_encode_end,
|
MPV_encode_end,
|
||||||
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1},
|
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1},
|
||||||
|
.long_name= "Windows Media Video 8",
|
||||||
};
|
};
|
||||||
|
@ -141,4 +141,5 @@ AVCodec wnv1_decoder = {
|
|||||||
NULL,
|
NULL,
|
||||||
decode_frame,
|
decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "Winnov WNV1",
|
||||||
};
|
};
|
||||||
|
@ -135,4 +135,5 @@ AVCodec xl_decoder = {
|
|||||||
NULL,
|
NULL,
|
||||||
decode_frame,
|
decode_frame,
|
||||||
CODEC_CAP_DR1,
|
CODEC_CAP_DR1,
|
||||||
|
.long_name = "Miro VideoXL",
|
||||||
};
|
};
|
||||||
|
@ -133,4 +133,5 @@ AVCodec xsub_decoder = {
|
|||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
decode_frame,
|
decode_frame,
|
||||||
|
.long_name = "XSUB",
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user