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/rawdec.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/rawdec.c')
-rw-r--r-- | libavformat/rawdec.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavformat/rawdec.c b/libavformat/rawdec.c index fe25014950..4f830e3c20 100644 --- a/libavformat/rawdec.c +++ b/libavformat/rawdec.c @@ -138,7 +138,7 @@ int ff_raw_video_read_header(AVFormatContext *s, /* Note: Do not forget to add new entries to the Makefile as well. */ #if CONFIG_G722_DEMUXER -AVInputFormat g722_demuxer = { +AVInputFormat ff_g722_demuxer = { "g722", NULL_IF_CONFIG_SMALL("raw G.722"), 0, @@ -152,7 +152,7 @@ AVInputFormat g722_demuxer = { #endif #if CONFIG_GSM_DEMUXER -AVInputFormat gsm_demuxer = { +AVInputFormat ff_gsm_demuxer = { "gsm", NULL_IF_CONFIG_SMALL("raw GSM"), 0, @@ -166,7 +166,7 @@ AVInputFormat gsm_demuxer = { #endif #if CONFIG_MJPEG_DEMUXER -AVInputFormat mjpeg_demuxer = { +AVInputFormat ff_mjpeg_demuxer = { "mjpeg", NULL_IF_CONFIG_SMALL("raw MJPEG video"), 0, @@ -180,7 +180,7 @@ AVInputFormat mjpeg_demuxer = { #endif #if CONFIG_MLP_DEMUXER -AVInputFormat mlp_demuxer = { +AVInputFormat ff_mlp_demuxer = { "mlp", NULL_IF_CONFIG_SMALL("raw MLP"), 0, @@ -194,7 +194,7 @@ AVInputFormat mlp_demuxer = { #endif #if CONFIG_TRUEHD_DEMUXER -AVInputFormat truehd_demuxer = { +AVInputFormat ff_truehd_demuxer = { "truehd", NULL_IF_CONFIG_SMALL("raw TrueHD"), 0, @@ -208,7 +208,7 @@ AVInputFormat truehd_demuxer = { #endif #if CONFIG_SHORTEN_DEMUXER -AVInputFormat shorten_demuxer = { +AVInputFormat ff_shorten_demuxer = { "shn", NULL_IF_CONFIG_SMALL("raw Shorten"), 0, @@ -222,7 +222,7 @@ AVInputFormat shorten_demuxer = { #endif #if CONFIG_VC1_DEMUXER -AVInputFormat vc1_demuxer = { +AVInputFormat ff_vc1_demuxer = { "vc1", NULL_IF_CONFIG_SMALL("raw VC-1"), 0, |