comparison h263dec.c @ 6713:f282270c589f libavcodec

Add long names to some AVCodec declarations. patch by Stefano Sabatini, stefano.sabatini-lala poste it
author diego
date Mon, 28 Apr 2008 10:21:58 +0000
parents 76a252cc9ba3
children 5df0c730234d
comparison
equal deleted inserted replaced
6712:5b3acf9fd50a 6713:f282270c589f
734 NULL, 734 NULL,
735 ff_h263_decode_end, 735 ff_h263_decode_end,
736 ff_h263_decode_frame, 736 ff_h263_decode_frame,
737 CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY, 737 CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY,
738 .flush= ff_mpeg_flush, 738 .flush= ff_mpeg_flush,
739 .long_name="H.263",
739 }; 740 };
740 741
741 AVCodec msmpeg4v1_decoder = { 742 AVCodec msmpeg4v1_decoder = {
742 "msmpeg4v1", 743 "msmpeg4v1",
743 CODEC_TYPE_VIDEO, 744 CODEC_TYPE_VIDEO,
782 ff_h263_decode_init, 783 ff_h263_decode_init,
783 NULL, 784 NULL,
784 ff_h263_decode_end, 785 ff_h263_decode_end,
785 ff_h263_decode_frame, 786 ff_h263_decode_frame,
786 CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1, 787 CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1,
788 .long_name= "Windows Media Video 7",
787 }; 789 };
788 790
789 AVCodec h263i_decoder = { 791 AVCodec h263i_decoder = {
790 "h263i", 792 "h263i",
791 CODEC_TYPE_VIDEO, 793 CODEC_TYPE_VIDEO,
794 ff_h263_decode_init, 796 ff_h263_decode_init,
795 NULL, 797 NULL,
796 ff_h263_decode_end, 798 ff_h263_decode_end,
797 ff_h263_decode_frame, 799 ff_h263_decode_frame,
798 CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1, 800 CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1,
801 .long_name = "H.263i",
799 }; 802 };
800 803
801 AVCodec flv_decoder = { 804 AVCodec flv_decoder = {
802 "flv", 805 "flv",
803 CODEC_TYPE_VIDEO, 806 CODEC_TYPE_VIDEO,
805 sizeof(MpegEncContext), 808 sizeof(MpegEncContext),
806 ff_h263_decode_init, 809 ff_h263_decode_init,
807 NULL, 810 NULL,
808 ff_h263_decode_end, 811 ff_h263_decode_end,
809 ff_h263_decode_frame, 812 ff_h263_decode_frame,
810 CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 813 CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1,
814 .long_name= "Flash Video",
811 }; 815 };