[MPlayer-cvslog] r25135 - trunk/libmpdemux/muxer_lavf.c
Jindrich Makovicka
makovick at gmail.com
Thu Nov 22 18:48:30 CET 2007
On Thu, 22 Nov 2007 15:59:45 +0200
"Ivan Kalvachev" <ikalvachev at gmail.com> wrote:
> 2007/11/22, iive <subversion at mplayerhq.hu>:
> > Author: iive
> > Date: Thu Nov 22 01:22:29 2007
> > New Revision: 25135
> >
> > Log:
> > Fix compilation error.
> > FFmpeg commit r11071 removed the static ByteIOContext from
> > AVFormatContext and replaced it with dynamic. However muxer_lavf.c
> > haven't been modified to reflect that change.
>
> This commit fixes compilation, but the muxer is still broken. I'll
> probably send patch for this in the lavf demuxer thread as changes are
> similar.
I think the following bit is still missing:
--- libmpdemux/muxer_lavf.c (revision 25139)
+++ libmpdemux/muxer_lavf.c (working copy)
@@ -317,7 +317,7 @@
av_freep(&(priv->oc->streams[i]));
}
- url_fclose(&(priv->oc->pb));
+ url_fclose(priv->oc->pb);
av_free(priv->oc);
}
--
Jindrich Makovicka
More information about the MPlayer-cvslog
mailing list