diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-10-03 16:24:00 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-10-03 16:34:03 +0200 |
commit | 7c94cfa262ad2b5e8df1e6cc9536f41ed12bd3dd (patch) | |
tree | 0c4f0397e4b14a311ed79052acba0a6a7cc1f0ab | |
parent | 13090895cf1cbc148242f1be570aa27c2d07e891 (diff) | |
download | ffmpeg-7c94cfa262ad2b5e8df1e6cc9536f41ed12bd3dd.tar.gz |
lavc/options_table: Add option flags to the truncated flag.
Also add a short description for the help output.
-rw-r--r-- | libavcodec/options_table.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/options_table.h b/libavcodec/options_table.h index 2171aeac9b..8b32ae239b 100644 --- a/libavcodec/options_table.h +++ b/libavcodec/options_table.h @@ -70,7 +70,7 @@ static const AVOption avcodec_options[] = { {"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", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AV_CODEC_FLAG_TRUNCATED }, INT_MIN, INT_MAX, 0, "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 {"naq", "normalize adaptive quantization", 0, AV_OPT_TYPE_CONST, {.i64 = CODEC_FLAG_NORMALIZE_AQP }, INT_MIN, INT_MAX, V|E, "flags"}, #endif |