diff options
author | Diego Elio Pettenò <flameeyes@gmail.com> | 2011-01-25 22:03:28 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-01-28 03:15:34 +0100 |
commit | 66355be3c3eb8e797589058b0773f773a8c2231e (patch) | |
tree | 8dfe2254904eafda194acc98c465bf2ece7f69a6 /libavformat/img2.c | |
parent | ebf3ee16c765811fe3ab0c8a295ada0e2f5eca44 (diff) | |
download | ffmpeg-66355be3c3eb8e797589058b0773f773a8c2231e.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.
(cherry picked from commit c6610a216ed2948885772154a2eed696e0cb4aca)
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), |