[FFmpeg-cvslog] avformat/sapdec: Forward whitelists to sdp demuxer
Michael Niedermayer
git at videolan.org
Thu Oct 23 15:43:56 CEST 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Oct 23 15:27:21 2014 +0200| [c5e337431b797c5da9b6a88a8103255f1b29a4a4] | committer: Michael Niedermayer
avformat/sapdec: Forward whitelists to sdp demuxer
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c5e337431b797c5da9b6a88a8103255f1b29a4a4
---
libavformat/sapdec.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/libavformat/sapdec.c b/libavformat/sapdec.c
index fe7bd82..dbef1d2 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;
More information about the ffmpeg-cvslog
mailing list