Mercurial > libavformat.hg
comparison allformats.c @ 2545:213268d7594e libavformat
move unrelated functions declarations out of allformats.h
author | aurel |
---|---|
date | Tue, 11 Sep 2007 09:27:46 +0000 |
parents | bbfeec27c98c |
children | 276257e703af |
comparison
equal
deleted
inserted
replaced
2544:0318af3025dd | 2545:213268d7594e |
---|---|
18 * License along with FFmpeg; if not, write to the Free Software | 18 * License along with FFmpeg; if not, write to the Free Software |
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
20 */ | 20 */ |
21 #include "avformat.h" | 21 #include "avformat.h" |
22 #include "allformats.h" | 22 #include "allformats.h" |
23 #include "rtp_internal.h" | |
23 | 24 |
24 #define REGISTER_MUXER(X,x) \ | 25 #define REGISTER_MUXER(X,x) \ |
25 if(ENABLE_##X##_MUXER) av_register_output_format(&x##_muxer) | 26 if(ENABLE_##X##_MUXER) av_register_output_format(&x##_muxer) |
26 #define REGISTER_DEMUXER(X,x) \ | 27 #define REGISTER_DEMUXER(X,x) \ |
27 if(ENABLE_##X##_DEMUXER) av_register_input_format(&x##_demuxer) | 28 if(ENABLE_##X##_DEMUXER) av_register_input_format(&x##_demuxer) |