mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
avmux: Fix invalid address passing to av_opt_set_int()
https://bugzilla.gnome.org/show_bug.cgi?id=723615
This commit is contained in:
parent
f86fd7e29e
commit
fe224775cf
1 changed files with 1 additions and 1 deletions
|
@ -478,7 +478,7 @@ gst_ffmpegmux_setcaps (GstPad * pad, GstCaps * caps)
|
|||
collect_pad = (GstFFMpegMuxPad *) gst_pad_get_element_private (pad);
|
||||
|
||||
st = ffmpegmux->context->streams[collect_pad->padnum];
|
||||
av_opt_set_int (&ffmpegmux->context, "preload", ffmpegmux->preload, 0);
|
||||
av_opt_set_int (ffmpegmux->context, "preload", ffmpegmux->preload, 0);
|
||||
ffmpegmux->context->max_delay = ffmpegmux->max_delay;
|
||||
|
||||
/* for the format-specific guesses, we'll go to
|
||||
|
|
Loading…
Reference in a new issue