comparison mace.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 48759bfbd073
children e943e1409077
comparison
equal deleted inserted replaced
6709:f18b7851b5a5 6710:a4104482ceef
435 sizeof(MACEContext), 435 sizeof(MACEContext),
436 mace_decode_init, 436 mace_decode_init,
437 NULL, 437 NULL,
438 NULL, 438 NULL,
439 mace_decode_frame, 439 mace_decode_frame,
440 .long_name = "MACE (Macintosh Audio Compression/Expansion) 3:1",
440 }; 441 };
441 442
442 AVCodec mace6_decoder = { 443 AVCodec mace6_decoder = {
443 "mace6", 444 "mace6",
444 CODEC_TYPE_AUDIO, 445 CODEC_TYPE_AUDIO,
446 sizeof(MACEContext), 447 sizeof(MACEContext),
447 mace_decode_init, 448 mace_decode_init,
448 NULL, 449 NULL,
449 NULL, 450 NULL,
450 mace_decode_frame, 451 mace_decode_frame,
452 .long_name = "MACE (Macintosh Audio Compression/Expansion) 6:1",
451 }; 453 };
452 454