diff options
author | James Almer <jamrial@gmail.com> | 2017-10-23 16:04:31 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-10-23 16:04:31 -0300 |
commit | 7b550c5f84f21ce883e86bc91f16093641d5dc85 (patch) | |
tree | 5cffe208a3e3c1577e0be2efe49310745d889100 /libavcodec/options_table.h | |
parent | d658e04337c590043190718ec4a8137d3e8216b9 (diff) | |
parent | b3739599bda740ac12d3dde31a331b744df99123 (diff) | |
download | ffmpeg-7b550c5f84f21ce883e86bc91f16093641d5dc85.tar.gz |
Merge commit 'b3739599bda740ac12d3dde31a331b744df99123'
* commit 'b3739599bda740ac12d3dde31a331b744df99123':
lavc: Drop deprecated emu edge functionality
Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/options_table.h')
-rw-r--r-- | libavcodec/options_table.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/options_table.h b/libavcodec/options_table.h index 68dce2a930..944c6c4f85 100644 --- a/libavcodec/options_table.h +++ b/libavcodec/options_table.h @@ -66,9 +66,6 @@ static const AVOption avcodec_options[] = { {"pass1", "use internal 2-pass ratecontrol in first pass mode", 0, AV_OPT_TYPE_CONST, {.i64 = AV_CODEC_FLAG_PASS1 }, INT_MIN, INT_MAX, 0, "flags"}, {"pass2", "use internal 2-pass ratecontrol in second pass mode", 0, AV_OPT_TYPE_CONST, {.i64 = AV_CODEC_FLAG_PASS2 }, INT_MIN, INT_MAX, 0, "flags"}, {"gray", "only decode/encode grayscale", 0, AV_OPT_TYPE_CONST, {.i64 = AV_CODEC_FLAG_GRAY }, INT_MIN, INT_MAX, V|E|D, "flags"}, -#if FF_API_EMU_EDGE -{"emu_edge", "do not draw edges", 0, AV_OPT_TYPE_CONST, {.i64 = CODEC_FLAG_EMU_EDGE }, INT_MIN, INT_MAX, 0, "flags"}, -#endif {"psnr", "error[?] variables will be set during encoding", 0, AV_OPT_TYPE_CONST, {.i64 = AV_CODEC_FLAG_PSNR }, INT_MIN, INT_MAX, V|E, "flags"}, {"truncated", "Input bitstream might be randomly truncated", 0, AV_OPT_TYPE_CONST, {.i64 = AV_CODEC_FLAG_TRUNCATED }, INT_MIN, INT_MAX, V|D, "flags"}, #if FF_API_NORMALIZE_AQP |