diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-08-02 12:37:49 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-08-03 03:24:15 -0700 |
commit | bad81800bb51f43d28d656abf5d45b477e3b3198 (patch) | |
tree | 1c7b6604b4274bb090cc6239e82c2f26aa053c00 /libavcodec | |
parent | 072916d903d3a925bcd0c864f12254157cab63c1 (diff) | |
download | ffmpeg-bad81800bb51f43d28d656abf5d45b477e3b3198.tar.gz |
avcodec: options: Add missing deprecation ifdefs around emu_edge
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/options_table.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/options_table.h b/libavcodec/options_table.h index c40a6cef54..2ae2dccb18 100644 --- a/libavcodec/options_table.h +++ b/libavcodec/options_table.h @@ -64,7 +64,9 @@ static const AVOption avcodec_options[] = { {"pass1", "use internal 2-pass ratecontrol in first pass mode", 0, AV_OPT_TYPE_CONST, {.i64 = 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 = CODEC_FLAG_PASS2 }, INT_MIN, INT_MAX, 0, "flags"}, {"gray", "only decode/encode grayscale", 0, AV_OPT_TYPE_CONST, {.i64 = 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 = CODEC_FLAG_PSNR }, INT_MIN, INT_MAX, V|E, "flags"}, {"truncated", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = CODEC_FLAG_TRUNCATED }, INT_MIN, INT_MAX, 0, "flags"}, #if FF_API_NORMALIZE_AQP |