comparison mjpegdec.c @ 6710:a4104482ceef libavcodec

Add long names to many AVCodec declarations. patch by Stefano Sabatini, stefano.sabatini-lala poste it
author diego
date Sun, 27 Apr 2008 10:52:44 +0000
parents 22cca5d3173a
children e943e1409077
comparison
equal deleted inserted replaced
6709:f18b7851b5a5 6710:a4104482ceef
1361 ff_mjpeg_decode_init, 1361 ff_mjpeg_decode_init,
1362 NULL, 1362 NULL,
1363 ff_mjpeg_decode_end, 1363 ff_mjpeg_decode_end,
1364 ff_mjpeg_decode_frame, 1364 ff_mjpeg_decode_frame,
1365 CODEC_CAP_DR1, 1365 CODEC_CAP_DR1,
1366 NULL 1366 NULL,
1367 .long_name = "MJPEG (Motion JPEG)",
1367 }; 1368 };
1368 1369
1369 AVCodec thp_decoder = { 1370 AVCodec thp_decoder = {
1370 "thp", 1371 "thp",
1371 CODEC_TYPE_VIDEO, 1372 CODEC_TYPE_VIDEO,
1374 ff_mjpeg_decode_init, 1375 ff_mjpeg_decode_init,
1375 NULL, 1376 NULL,
1376 ff_mjpeg_decode_end, 1377 ff_mjpeg_decode_end,
1377 ff_mjpeg_decode_frame, 1378 ff_mjpeg_decode_frame,
1378 CODEC_CAP_DR1, 1379 CODEC_CAP_DR1,
1379 NULL 1380 NULL,
1381 .long_name = "Nintendo Gamecube THP video",
1380 }; 1382 };