mms: Set http custom headers via the AVOption
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
@@ -28,6 +28,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "libavutil/intreadwrite.h"
|
#include "libavutil/intreadwrite.h"
|
||||||
#include "libavutil/avstring.h"
|
#include "libavutil/avstring.h"
|
||||||
|
#include "libavutil/opt.h"
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
#include "mms.h"
|
#include "mms.h"
|
||||||
#include "asf.h"
|
#include "asf.h"
|
||||||
@@ -245,7 +246,7 @@ static int mmsh_open(URLContext *h, const char *uri, int flags)
|
|||||||
CLIENTGUID
|
CLIENTGUID
|
||||||
"Connection: Close\r\n\r\n",
|
"Connection: Close\r\n\r\n",
|
||||||
host, port, mmsh->request_seq++);
|
host, port, mmsh->request_seq++);
|
||||||
ff_http_set_headers(mms->mms_hd, headers);
|
av_opt_set(mms->mms_hd->priv_data, "headers", headers, 0);
|
||||||
|
|
||||||
err = ffurl_connect(mms->mms_hd);
|
err = ffurl_connect(mms->mms_hd);
|
||||||
if (err) {
|
if (err) {
|
||||||
@@ -291,7 +292,7 @@ static int mmsh_open(URLContext *h, const char *uri, int flags)
|
|||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
av_dlog(NULL, "out_buffer is %s", headers);
|
av_dlog(NULL, "out_buffer is %s", headers);
|
||||||
ff_http_set_headers(mms->mms_hd, headers);
|
av_opt_set(mms->mms_hd->priv_data, "headers", headers, 0);
|
||||||
|
|
||||||
err = ffurl_connect(mms->mms_hd);
|
err = ffurl_connect(mms->mms_hd);
|
||||||
if (err) {
|
if (err) {
|
||||||
|
|||||||
Reference in New Issue
Block a user