summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--demux/demux_lavf.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/demux/demux_lavf.c b/demux/demux_lavf.c
index cda0d07485..17053a5520 100644
--- a/demux/demux_lavf.c
+++ b/demux/demux_lavf.c
@@ -562,10 +562,7 @@ static int demux_open_lavf(demuxer_t *demuxer, enum demux_check check)
avfc->flags |= AVFMT_FLAG_IGNIDX;
/* Keep side data as side data instead of mashing it into the packet
* stream. */
- if (av_opt_set(avfc, "fflags", "+keepside", 0) < 0) {
- MP_WARN(demuxer, "demux_lavf, couldn't set option keepdata; "
- "in-stream metadata updates will be ignored\n");
- }
+ av_opt_set(avfc, "fflags", "+keepside", 0);
if (lavfdopts->probesize) {
if (av_opt_set_int(avfc, "probesize", lavfdopts->probesize, 0) < 0)