comparison snow.c @ 6712:5b3acf9fd50a libavcodec

Add long names to AVCodec declarations. patch by Stefano Sabatini, stefano.sabatini-lala poste it
author diego
date Sun, 27 Apr 2008 22:39:51 +0000
parents 48759bfbd073
children e943e1409077
comparison
equal deleted inserted replaced
6711:78c7765d9618 6712:5b3acf9fd50a
4658 decode_init, 4658 decode_init,
4659 NULL, 4659 NULL,
4660 decode_end, 4660 decode_end,
4661 decode_frame, 4661 decode_frame,
4662 0 /*CODEC_CAP_DR1*/ /*| CODEC_CAP_DRAW_HORIZ_BAND*/, 4662 0 /*CODEC_CAP_DR1*/ /*| CODEC_CAP_DRAW_HORIZ_BAND*/,
4663 NULL 4663 NULL,
4664 .long_name = "Snow",
4664 }; 4665 };
4665 4666
4666 #ifdef CONFIG_SNOW_ENCODER 4667 #ifdef CONFIG_SNOW_ENCODER
4667 AVCodec snow_encoder = { 4668 AVCodec snow_encoder = {
4668 "snow", 4669 "snow",
4670 CODEC_ID_SNOW, 4671 CODEC_ID_SNOW,
4671 sizeof(SnowContext), 4672 sizeof(SnowContext),
4672 encode_init, 4673 encode_init,
4673 encode_frame, 4674 encode_frame,
4674 encode_end, 4675 encode_end,
4676 .long_name = "Snow",
4675 }; 4677 };
4676 #endif 4678 #endif
4677 4679
4678 4680
4679 #ifdef TEST 4681 #ifdef TEST