summaryrefslogtreecommitdiff
path: root/libavformat/sapdec.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/sapdec.c')
-rw-r--r--libavformat/sapdec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/sapdec.c b/libavformat/sapdec.c
index ef1ecc47d7..e3cdcea6a6 100644
--- a/libavformat/sapdec.c
+++ b/libavformat/sapdec.c
@@ -25,6 +25,7 @@
#include "network.h"
#include "os_support.h"
#include "internal.h"
+#include "avio_internal.h"
#if HAVE_POLL_H
#include <poll.h>
#endif
@@ -142,7 +143,7 @@ static int sap_read_header(AVFormatContext *s,
}
av_log(s, AV_LOG_VERBOSE, "SDP:\n%s\n", sap->sdp);
- init_put_byte(&sap->sdp_pb, sap->sdp, strlen(sap->sdp), 0, NULL, NULL,
+ ffio_init_context(&sap->sdp_pb, sap->sdp, strlen(sap->sdp), 0, NULL, NULL,
NULL, NULL);
infmt = av_find_input_format("sdp");