summaryrefslogtreecommitdiff
path: root/libavformat/allformats.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-10-28 07:31:13 +0100
committerAnton Khirnov <anton@khirnov.net>2013-10-28 15:29:49 +0100
commitfeeafb4adabd5c17de1738ed9962e40892b20edb (patch)
tree7e6e4ee4a5225e4f3a92c4bbef064dc92effc9cf /libavformat/allformats.c
parentc9a13a289d0e1607387854127476813a1ee3d34b (diff)
lavf: do not export av_register_{rtp,rdt}_dynamic_payload_handlers from shared objects
Diffstat (limited to 'libavformat/allformats.c')
-rw-r--r--libavformat/allformats.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c
index 36a782be8e..d72a127612 100644
--- a/libavformat/allformats.c
+++ b/libavformat/allformats.c
@@ -210,8 +210,8 @@ void av_register_all(void)
REGISTER_MUXDEMUX(SAP, sap);
REGISTER_DEMUXER (SDP, sdp);
#if CONFIG_RTPDEC
- av_register_rtp_dynamic_payload_handlers();
- av_register_rdt_dynamic_payload_handlers();
+ ff_register_rtp_dynamic_payload_handlers();
+ ff_register_rdt_dynamic_payload_handlers();
#endif
REGISTER_DEMUXER (SEGAFILM, segafilm);
REGISTER_MUXER (SEGMENT, segment);