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

Hendrik Leppkes h.leppkes at gmail.com
Wed May 16 11:13:44 EEST 2018


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.

- Hendrik


More information about the ffmpeg-devel mailing list