[FFmpeg-devel] [PATCH] avformat: Fix errors in version script list
wm4
nfxjfg at googlemail.com
Wed May 16 21:07:20 EEST 2018
On Wed, 16 May 2018 10:13:44 +0200
Hendrik Leppkes <h.leppkes at gmail.com> wrote:
> On Wed, May 16, 2018 at 2:39 AM, Peter Bennett <pb.mythtv at gmail.com> wrote:
> > From: Peter Bennett <pbennett at mythtv.org>
> >
> > libavformat.v has url_open, url_close and url_write. These
> > should be ffurl_ in each case.
> > ---
> > libavformat/libavformat.v | 6 +++---
> > 1 file changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/libavformat/libavformat.v b/libavformat/libavformat.v
> > index cf2055f..7df12d3 100644
> > --- a/libavformat/libavformat.v
> > +++ b/libavformat/libavformat.v
> > @@ -6,9 +6,9 @@ LIBAVFORMAT_MAJOR {
> > ffurl_seek;
> > ffurl_size;
> > ffurl_protocol_next;
> > - url_open;
> > - url_close;
> > - url_write;
> > + ffurl_open;
> > + ffurl_close;
> > + ffurl_write;
> > url_*;
> > ff_timefilter_destroy;
> > ff_timefilter_new;
> > --
> > 2.7.4
> >
>
> libavformat.v contains none of these entries anymore.
Also the url API (why does it even exist?) hasn't been public API for
years.
More information about the ffmpeg-devel
mailing list