mirror of
https://github.com/mpv-player/mpv
synced 2025-03-05 13:47:39 +00:00
Fix compilation error.
FFmpeg commit r11071 removed the static ByteIOContext from AVFormatContext and replaced it with a dynamic one. Thus muxer_lavf.c needs to be modified to reflect the change. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25135 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
248c247785
commit
07c7b70714
@ -400,7 +400,7 @@ int muxer_init_muxer_lavf(muxer_t *muxer)
|
||||
goto fail;
|
||||
}
|
||||
|
||||
((URLContext*)(priv->oc->pb.opaque))->priv_data= muxer;
|
||||
((URLContext*)(priv->oc->pb->opaque))->priv_data= muxer;
|
||||
|
||||
muxer->priv = (void *) priv;
|
||||
muxer->cont_new_stream = &lavf_new_stream;
|
||||
|
Loading…
Reference in New Issue
Block a user