From bde15e74de442cebf61acc6cd598a13aca249030 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Tue, 3 Jun 2008 16:20:54 +0000 Subject: 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 --- libavformat/img2.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavformat/img2.c') 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), -- cgit v1.2.3