diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-06-03 16:20:54 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-06-03 16:20:54 +0000 |
commit | bde15e74de442cebf61acc6cd598a13aca249030 (patch) | |
tree | d636b1125dfbbfd09c3b06044b8ac1a182a28271 /libavformat/img2.c | |
parent | ca162a5004fcd2209b6ee1eeb92731cfe1142ca1 (diff) | |
download | ffmpeg-bde15e74de442cebf61acc6cd598a13aca249030.tar.gz |
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/img2.c')
-rw-r--r-- | libavformat/img2.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/img2.c b/libavformat/img2.c index 1e7bcc6992..766d4a99a1 100644 --- a/libavformat/img2.c +++ b/libavformat/img2.c @@ -379,7 +379,7 @@ static int img_write_packet(AVFormatContext *s, AVPacket *pkt) #ifdef CONFIG_IMAGE2_DEMUXER AVInputFormat image2_demuxer = { "image2", - "image2 sequence", + NULL_IF_CONFIG_SMALL("image2 sequence"), sizeof(VideoData), image_probe, img_read_header, @@ -393,7 +393,7 @@ AVInputFormat image2_demuxer = { #ifdef CONFIG_IMAGE2PIPE_DEMUXER AVInputFormat image2pipe_demuxer = { "image2pipe", - "piped image2 sequence", + NULL_IF_CONFIG_SMALL("piped image2 sequence"), sizeof(VideoData), NULL, /* no probe */ img_read_header, @@ -407,7 +407,7 @@ AVInputFormat image2pipe_demuxer = { #ifdef CONFIG_IMAGE2_MUXER AVOutputFormat image2_muxer = { "image2", - "image2 sequence", + NULL_IF_CONFIG_SMALL("image2 sequence"), "", "", sizeof(VideoData), @@ -422,7 +422,7 @@ AVOutputFormat image2_muxer = { #ifdef CONFIG_IMAGE2PIPE_MUXER AVOutputFormat image2pipe_muxer = { "image2pipe", - "piped image2 sequence", + NULL_IF_CONFIG_SMALL("piped image2 sequence"), "", "", sizeof(VideoData), |