[FFmpeg-cvslog] Allow setting CODEC_FLAG2_CHUNKS via the name "chunks".

Reimar Döffinger git at videolan.org
Sun Apr 8 02:45:01 CEST 2012


ffmpeg | branch: master | Reimar Döffinger <Reimar.Doeffinger at gmx.de> | Sun Apr  8 01:14:49 2012 +0200| [e9841505d2f17addc651d65322c31351d271798d] | committer: Reimar Döffinger

Allow setting CODEC_FLAG2_CHUNKS via the name "chunks".

Signed-off-by: Reimar Döffinger <Reimar.Doeffinger at gmx.de>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e9841505d2f17addc651d65322c31351d271798d
---

 libavcodec/options_table.h |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/libavcodec/options_table.h b/libavcodec/options_table.h
index be4f5f4..c4d4277 100644
--- a/libavcodec/options_table.h
+++ b/libavcodec/options_table.h
@@ -72,6 +72,7 @@ static const AVOption options[]={
 #endif
 {"noout", "skip bitstream encoding", 0, AV_OPT_TYPE_CONST, {.dbl = CODEC_FLAG2_NO_OUTPUT }, INT_MIN, INT_MAX, V|E, "flags2"},
 {"local_header", "place global headers at every keyframe instead of in extradata", 0, AV_OPT_TYPE_CONST, {.dbl = CODEC_FLAG2_LOCAL_HEADER }, INT_MIN, INT_MAX, V|E, "flags2"},
+{"chunks", "Frame data might be split into multiple chunks", 0, AV_OPT_TYPE_CONST, {.dbl = CODEC_FLAG2_CHUNKS }, INT_MIN, INT_MAX, V|D, "flags2"},
 {"showall", "Show all frames before the first keyframe", 0, AV_OPT_TYPE_CONST, {.dbl = CODEC_FLAG2_SHOW_ALL }, INT_MIN, INT_MAX, V|D, "flags2"},
 #if FF_API_SUB_ID
 {"sub_id", NULL, OFFSET(sub_id), AV_OPT_TYPE_INT, {.dbl = DEFAULT }, INT_MIN, INT_MAX},



More information about the ffmpeg-cvslog mailing list