diff options
author | Diego Elio Pettenò <flameeyes@gmail.com> | 2011-01-25 22:03:28 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-01-26 22:10:09 +0000 |
commit | c6610a216ed2948885772154a2eed696e0cb4aca (patch) | |
tree | 7ea6d3fdf9a8c957a5e690af2331ab481b1eb141 /libavformat/img2.c | |
parent | 225b6d7fdea370de3723420e6adc2f3192439b00 (diff) | |
download | ffmpeg-c6610a216ed2948885772154a2eed696e0cb4aca.tar.gz |
Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.
This also lists the objects from those two libraries as internal (by adding
the ff_ prefix) so that they can then be hidden via linker scripts.
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 71f1dd0a1b..4cf409e001 100644 --- a/libavformat/img2.c +++ b/libavformat/img2.c @@ -412,7 +412,7 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt) /* input */ #if CONFIG_IMAGE2_DEMUXER -AVInputFormat image2_demuxer = { +AVInputFormat ff_image2_demuxer = { .name = "image2", .long_name = NULL_IF_CONFIG_SMALL("image2 sequence"), .priv_data_size = sizeof(VideoData), @@ -423,7 +423,7 @@ AVInputFormat image2_demuxer = { }; #endif #if CONFIG_IMAGE2PIPE_DEMUXER -AVInputFormat image2pipe_demuxer = { +AVInputFormat ff_image2pipe_demuxer = { .name = "image2pipe", .long_name = NULL_IF_CONFIG_SMALL("piped image2 sequence"), .priv_data_size = sizeof(VideoData), @@ -434,7 +434,7 @@ AVInputFormat image2pipe_demuxer = { /* output */ #if CONFIG_IMAGE2_MUXER -AVOutputFormat image2_muxer = { +AVOutputFormat ff_image2_muxer = { .name = "image2", .long_name = NULL_IF_CONFIG_SMALL("image2 sequence"), .extensions = "bmp,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png," @@ -447,7 +447,7 @@ AVOutputFormat image2_muxer = { }; #endif #if CONFIG_IMAGE2PIPE_MUXER -AVOutputFormat image2pipe_muxer = { +AVOutputFormat ff_image2pipe_muxer = { .name = "image2pipe", .long_name = NULL_IF_CONFIG_SMALL("piped image2 sequence"), .priv_data_size = sizeof(VideoData), |