summaryrefslogtreecommitdiff
path: root/libavformat/movenc.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2008-06-03 16:20:54 +0000
committerDiego Biurrun <diego@biurrun.de>2008-06-03 16:20:54 +0000
commitbde15e74de442cebf61acc6cd598a13aca249030 (patch)
treed636b1125dfbbfd09c3b06044b8ac1a182a28271 /libavformat/movenc.c
parentca162a5004fcd2209b6ee1eeb92731cfe1142ca1 (diff)
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 Originally committed as revision 13649 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r--libavformat/movenc.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index e4f7066f12..937b907919 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -1666,7 +1666,7 @@ static int mov_write_trailer(AVFormatContext *s)
#ifdef CONFIG_MOV_MUXER
AVOutputFormat mov_muxer = {
"mov",
- "mov format",
+ NULL_IF_CONFIG_SMALL("MOV format"),
NULL,
"mov",
sizeof(MOVContext),
@@ -1682,7 +1682,7 @@ AVOutputFormat mov_muxer = {
#ifdef CONFIG_TGP_MUXER
AVOutputFormat tgp_muxer = {
"3gp",
- "3gp format",
+ NULL_IF_CONFIG_SMALL("3GP format"),
NULL,
"3gp",
sizeof(MOVContext),
@@ -1698,7 +1698,7 @@ AVOutputFormat tgp_muxer = {
#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 @@ AVOutputFormat mp4_muxer = {
#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 @@ AVOutputFormat psp_muxer = {
#ifdef CONFIG_TG2_MUXER
AVOutputFormat tg2_muxer = {
"3g2",
- "3gp2 format",
+ NULL_IF_CONFIG_SMALL("3GP2 format"),
NULL,
"3g2",
sizeof(MOVContext),
@@ -1746,7 +1746,7 @@ AVOutputFormat tg2_muxer = {
#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),