Browse Source

avio: Apply avoptions on the URLContext itself as well

Currently the list of avoptions for URLContext is empty though,
but such options will be added.

Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n3.1
Martin Storsjö 10 years ago
parent
commit
d44f3e4059
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavformat/avio.c

+ 3
- 0
libavformat/avio.c View File

@@ -176,6 +176,9 @@ int ffurl_open(URLContext **puc, const char *filename, int flags,
int ret = ffurl_alloc(puc, filename, flags, int_cb, protocols);
if (ret)
return ret;
if (options &&
(ret = av_opt_set_dict(*puc, options)) < 0)
goto fail;
if (options && (*puc)->prot->priv_data_class &&
(ret = av_opt_set_dict((*puc)->priv_data, options)) < 0)
goto fail;


Loading…
Cancel
Save