comparison matroskaenc.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 6f61c3b36632
children c0955bfc27be
comparison
equal deleted inserted replaced
3423:613aff547655 3424:7a0230981402
817 return 0; 817 return 0;
818 } 818 }
819 819
820 AVOutputFormat matroska_muxer = { 820 AVOutputFormat matroska_muxer = {
821 "matroska", 821 "matroska",
822 "Matroska File Format", 822 NULL_IF_CONFIG_SMALL("Matroska file format"),
823 "video/x-matroska", 823 "video/x-matroska",
824 "mkv", 824 "mkv",
825 sizeof(MatroskaMuxContext), 825 sizeof(MatroskaMuxContext),
826 CODEC_ID_MP2, 826 CODEC_ID_MP2,
827 CODEC_ID_MPEG4, 827 CODEC_ID_MPEG4,
832 .subtitle_codec = CODEC_ID_TEXT, 832 .subtitle_codec = CODEC_ID_TEXT,
833 }; 833 };
834 834
835 AVOutputFormat matroska_audio_muxer = { 835 AVOutputFormat matroska_audio_muxer = {
836 "matroska", 836 "matroska",
837 "Matroska File Format", 837 NULL_IF_CONFIG_SMALL("Matroska file format"),
838 "audio/x-matroska", 838 "audio/x-matroska",
839 "mka", 839 "mka",
840 sizeof(MatroskaMuxContext), 840 sizeof(MatroskaMuxContext),
841 CODEC_ID_MP2, 841 CODEC_ID_MP2,
842 CODEC_ID_NONE, 842 CODEC_ID_NONE,