changeset 25107:ad93c5ba83be

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.
author iive
date Thu, 22 Nov 2007 00:22:29 +0000
parents c0f76c08044a
children d13ef3dac408
files libmpdemux/muxer_lavf.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libmpdemux/muxer_lavf.c	Wed Nov 21 17:15:20 2007 +0000
+++ b/libmpdemux/muxer_lavf.c	Thu Nov 22 00:22:29 2007 +0000
@@ -400,7 +400,7 @@
 		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;