comparison rv10.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
782 sizeof(MpegEncContext), 782 sizeof(MpegEncContext),
783 rv10_decode_init, 783 rv10_decode_init,
784 NULL, 784 NULL,
785 rv10_decode_end, 785 rv10_decode_end,
786 rv10_decode_frame, 786 rv10_decode_frame,
787 CODEC_CAP_DR1 787 CODEC_CAP_DR1,
788 .long_name = "RealVideo 1.0",
788 }; 789 };
789 790
790 AVCodec rv20_decoder = { 791 AVCodec rv20_decoder = {
791 "rv20", 792 "rv20",
792 CODEC_TYPE_VIDEO, 793 CODEC_TYPE_VIDEO,
796 NULL, 797 NULL,
797 rv10_decode_end, 798 rv10_decode_end,
798 rv10_decode_frame, 799 rv10_decode_frame,
799 CODEC_CAP_DR1 | CODEC_CAP_DELAY, 800 CODEC_CAP_DR1 | CODEC_CAP_DELAY,
800 .flush= ff_mpeg_flush, 801 .flush= ff_mpeg_flush,
802 .long_name = "RealVideo 2.0",
801 }; 803 };
802 804