diff 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
line wrap: on
line diff
--- a/movenc.c	Tue Jun 03 15:19:43 2008 +0000
+++ b/movenc.c	Tue Jun 03 16:20:54 2008 +0000
@@ -1666,7 +1666,7 @@
 #ifdef CONFIG_MOV_MUXER
 AVOutputFormat mov_muxer = {
     "mov",
-    "mov format",
+    NULL_IF_CONFIG_SMALL("MOV format"),
     NULL,
     "mov",
     sizeof(MOVContext),
@@ -1682,7 +1682,7 @@
 #ifdef CONFIG_TGP_MUXER
 AVOutputFormat tgp_muxer = {
     "3gp",
-    "3gp format",
+    NULL_IF_CONFIG_SMALL("3GP format"),
     NULL,
     "3gp",
     sizeof(MOVContext),
@@ -1698,7 +1698,7 @@
 #ifdef CONFIG_MP4_MUXER
 AVOutputFormat mp4_muxer = {
     "mp4",
-    "mp4 format",
+    NULL_IF_CONFIG_SMALL("MP4 format"),
     "application/mp4",
     "mp4,m4a",
     sizeof(MOVContext),
@@ -1714,7 +1714,7 @@
 #ifdef CONFIG_PSP_MUXER
 AVOutputFormat psp_muxer = {
     "psp",
-    "psp mp4 format",
+    NULL_IF_CONFIG_SMALL("PSP MP4 format"),
     NULL,
     "mp4,psp",
     sizeof(MOVContext),
@@ -1730,7 +1730,7 @@
 #ifdef CONFIG_TG2_MUXER
 AVOutputFormat tg2_muxer = {
     "3g2",
-    "3gp2 format",
+    NULL_IF_CONFIG_SMALL("3GP2 format"),
     NULL,
     "3g2",
     sizeof(MOVContext),
@@ -1746,7 +1746,7 @@
 #ifdef CONFIG_IPOD_MUXER
 AVOutputFormat ipod_muxer = {
     "ipod",
-    "iPod H.264 mp4 format",
+    NULL_IF_CONFIG_SMALL("iPod H.264 MP4 format"),
     "application/mp4",
     NULL,
     sizeof(MOVContext),