comparison movenc.c @ 3424:7a0230981402 libavformat

Make long_names in lavf/lavdev optional depending on CONFIG_SMALL. patch by Stefano Sabatini, stefano.sabatini-lala poste.it along with some spelling/consistency fixes for the long names by me
author diego
date Tue, 03 Jun 2008 16:20:54 +0000
parents 76918939de90
children 7d73c4a64714
comparison
equal deleted inserted replaced
3423:613aff547655 3424:7a0230981402
1664 } 1664 }
1665 1665
1666 #ifdef CONFIG_MOV_MUXER 1666 #ifdef CONFIG_MOV_MUXER
1667 AVOutputFormat mov_muxer = { 1667 AVOutputFormat mov_muxer = {
1668 "mov", 1668 "mov",
1669 "mov format", 1669 NULL_IF_CONFIG_SMALL("MOV format"),
1670 NULL, 1670 NULL,
1671 "mov", 1671 "mov",
1672 sizeof(MOVContext), 1672 sizeof(MOVContext),
1673 CODEC_ID_AAC, 1673 CODEC_ID_AAC,
1674 CODEC_ID_MPEG4, 1674 CODEC_ID_MPEG4,
1680 }; 1680 };
1681 #endif 1681 #endif
1682 #ifdef CONFIG_TGP_MUXER 1682 #ifdef CONFIG_TGP_MUXER
1683 AVOutputFormat tgp_muxer = { 1683 AVOutputFormat tgp_muxer = {
1684 "3gp", 1684 "3gp",
1685 "3gp format", 1685 NULL_IF_CONFIG_SMALL("3GP format"),
1686 NULL, 1686 NULL,
1687 "3gp", 1687 "3gp",
1688 sizeof(MOVContext), 1688 sizeof(MOVContext),
1689 CODEC_ID_AMR_NB, 1689 CODEC_ID_AMR_NB,
1690 CODEC_ID_H263, 1690 CODEC_ID_H263,
1696 }; 1696 };
1697 #endif 1697 #endif
1698 #ifdef CONFIG_MP4_MUXER 1698 #ifdef CONFIG_MP4_MUXER
1699 AVOutputFormat mp4_muxer = { 1699 AVOutputFormat mp4_muxer = {
1700 "mp4", 1700 "mp4",
1701 "mp4 format", 1701 NULL_IF_CONFIG_SMALL("MP4 format"),
1702 "application/mp4", 1702 "application/mp4",
1703 "mp4,m4a", 1703 "mp4,m4a",
1704 sizeof(MOVContext), 1704 sizeof(MOVContext),
1705 CODEC_ID_AAC, 1705 CODEC_ID_AAC,
1706 CODEC_ID_MPEG4, 1706 CODEC_ID_MPEG4,
1712 }; 1712 };
1713 #endif 1713 #endif
1714 #ifdef CONFIG_PSP_MUXER 1714 #ifdef CONFIG_PSP_MUXER
1715 AVOutputFormat psp_muxer = { 1715 AVOutputFormat psp_muxer = {
1716 "psp", 1716 "psp",
1717 "psp mp4 format", 1717 NULL_IF_CONFIG_SMALL("PSP MP4 format"),
1718 NULL, 1718 NULL,
1719 "mp4,psp", 1719 "mp4,psp",
1720 sizeof(MOVContext), 1720 sizeof(MOVContext),
1721 CODEC_ID_AAC, 1721 CODEC_ID_AAC,
1722 CODEC_ID_MPEG4, 1722 CODEC_ID_MPEG4,
1728 }; 1728 };
1729 #endif 1729 #endif
1730 #ifdef CONFIG_TG2_MUXER 1730 #ifdef CONFIG_TG2_MUXER
1731 AVOutputFormat tg2_muxer = { 1731 AVOutputFormat tg2_muxer = {
1732 "3g2", 1732 "3g2",
1733 "3gp2 format", 1733 NULL_IF_CONFIG_SMALL("3GP2 format"),
1734 NULL, 1734 NULL,
1735 "3g2", 1735 "3g2",
1736 sizeof(MOVContext), 1736 sizeof(MOVContext),
1737 CODEC_ID_AMR_NB, 1737 CODEC_ID_AMR_NB,
1738 CODEC_ID_H263, 1738 CODEC_ID_H263,
1744 }; 1744 };
1745 #endif 1745 #endif
1746 #ifdef CONFIG_IPOD_MUXER 1746 #ifdef CONFIG_IPOD_MUXER
1747 AVOutputFormat ipod_muxer = { 1747 AVOutputFormat ipod_muxer = {
1748 "ipod", 1748 "ipod",
1749 "iPod H.264 mp4 format", 1749 NULL_IF_CONFIG_SMALL("iPod H.264 MP4 format"),
1750 "application/mp4", 1750 "application/mp4",
1751 NULL, 1751 NULL,
1752 sizeof(MOVContext), 1752 sizeof(MOVContext),
1753 CODEC_ID_AAC, 1753 CODEC_ID_AAC,
1754 CODEC_ID_H264, 1754 CODEC_ID_H264,