From c5e337431b797c5da9b6a88a8103255f1b29a4a4 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 23 Oct 2014 15:27:21 +0200 Subject: [PATCH] avformat/sapdec: Forward whitelists to sdp demuxer Signed-off-by: Michael Niedermayer --- libavformat/sapdec.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libavformat/sapdec.c b/libavformat/sapdec.c index fe7bd825f2..dbef1d2bee 100644 --- a/libavformat/sapdec.c +++ b/libavformat/sapdec.c @@ -20,6 +20,7 @@ */ #include "avformat.h" +#include "libavutil/avassert.h" #include "libavutil/avstring.h" #include "libavutil/intreadwrite.h" #include "network.h" @@ -158,6 +159,11 @@ static int sap_read_header(AVFormatContext *s) sap->sdp_ctx->max_delay = s->max_delay; sap->sdp_ctx->pb = &sap->sdp_pb; sap->sdp_ctx->interrupt_callback = s->interrupt_callback; + + av_assert0(!sap->sdp_ctx->codec_whitelist && !sap->sdp_ctx->format_whitelist); + sap->sdp_ctx-> codec_whitelist = av_strdup(s->codec_whitelist); + sap->sdp_ctx->format_whitelist = av_strdup(s->format_whitelist); + ret = avformat_open_input(&sap->sdp_ctx, "temp.sdp", infmt, NULL); if (ret < 0) goto fail;