This decoding flag makes decoders drop all frames after a parameter
change, but what exactly constitutes a parameter change is not well
defined and will typically depend on the exact use case.
This functionality then does not belong in libavcodec, but rather in
user code
{"output_corrupt","Output even potentially corrupted frames",0,AV_OPT_TYPE_CONST,{.i64=AV_CODEC_FLAG_OUTPUT_CORRUPT},INT_MIN,INT_MAX,V|D,"flags"},
{"output_corrupt","Output even potentially corrupted frames",0,AV_OPT_TYPE_CONST,{.i64=AV_CODEC_FLAG_OUTPUT_CORRUPT},INT_MIN,INT_MAX,V|D,"flags"},
{"drop_changed","Drop frames whose parameters differ from first decoded frame",0,AV_OPT_TYPE_CONST,{.i64=AV_CODEC_FLAG_DROPCHANGED},INT_MIN,INT_MAX,A|V|D,"flags"},
#if FF_API_DROPCHANGED
{"drop_changed","Drop frames whose parameters differ from first decoded frame",0,AV_OPT_TYPE_CONST,{.i64=AV_CODEC_FLAG_DROPCHANGED},INT_MIN,INT_MAX,A|V|D|AV_OPT_FLAG_DEPRECATED,"flags"},