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:
iive 2007-11-22 00:22:29 +00:00
parent 248c247785
commit 07c7b70714
1 changed files with 1 additions and 1 deletions

View File

@ -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;