[FFmpeg-devel] [PATCH 8/8] lavf/movenc+dashenc: add automatic bitstream filtering

Derek Buitenhuis derek.buitenhuis at gmail.com
Fri Apr 8 19:26:15 CEST 2016


On 4/8/2016 1:38 AM, Rodger Combs wrote:
> @@ -617,6 +617,7 @@ static int dash_write_header(AVFormatContext *s)
>          ctx->opaque             = s->opaque;
>          ctx->io_close           = s->io_close;
>          ctx->io_open            = s->io_open;
> +        av_dict_set(&opts, "fflags", "-autobsf", 0);

Don't do this. This is a SILENT API break. You should have to explicitly
enable it, not add a line to disable it to keep current code working.
This will screw any API user who uses the DASH muxing API.

- Derek


More information about the ffmpeg-devel mailing list