[FFmpeg-devel] [PATCH 04/10] lavf/dashenc: remove unneeded call to dash_free

Jeyapal, Karthick kjeyapal at akamai.com
Sun Mar 18 09:17:36 EET 2018



On 3/14/18 11:54 AM, Rodger Combs wrote:
> ---
>  libavformat/dashenc.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
> index 79d63e52d4..5689aef811 100644
> --- a/libavformat/dashenc.c
> +++ b/libavformat/dashenc.c
> @@ -1030,10 +1030,8 @@ static int dash_write_header(AVFormatContext *s)
>      int i, ret;
>      for (i = 0; i < s->nb_streams; i++) {
>          OutputStream *os = &c->streams[i];
> -        if ((ret = avformat_write_header(os->ctx, NULL)) < 0) {
> -            dash_free(s);
> +        if ((ret = avformat_write_header(os->ctx, NULL)) < 0)
>              return ret;
> -        }
>      }
>      ret = write_manifest(s, 0);
>      if (!ret)

LGTM. Will push this soon.





More information about the ffmpeg-devel mailing list