diff mbox

[FFmpeg-devel] avformat: Fix errors in version script list

Message ID 1526431188-25293-1-git-send-email-pb.mythtv@gmail.com
State New
Headers show

Commit Message

Peter Bennett May 16, 2018, 12:39 a.m. UTC
From: Peter Bennett <pbennett@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(-)

Comments

Hendrik Leppkes May 16, 2018, 8:13 a.m. UTC | #1
On Wed, May 16, 2018 at 2:39 AM, Peter Bennett <pb.mythtv@gmail.com> wrote:
> From: Peter Bennett <pbennett@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.

- Hendrik
wm4 May 16, 2018, 6:07 p.m. UTC | #2
On Wed, 16 May 2018 10:13:44 +0200
Hendrik Leppkes <h.leppkes@gmail.com> wrote:

> On Wed, May 16, 2018 at 2:39 AM, Peter Bennett <pb.mythtv@gmail.com> wrote:
> > From: Peter Bennett <pbennett@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.
diff mbox

Patch

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;