[FFmpeg-cvslog] avformat/options_table: add FF_COMPLIANCE_UNOFFICIAL

Michael Niedermayer git at videolan.org
Sat Nov 1 15:56:41 CET 2014


ffmpeg | branch: release/2.3 | Michael Niedermayer <michaelni at gmx.at> | Sun Oct  5 21:43:17 2014 +0200| [10464ca0eba33672eb305da7270c37052245c035] | committer: Carl Eugen Hoyos

avformat/options_table: add FF_COMPLIANCE_UNOFFICIAL

Fixes ticket 3959

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit c02ea58c5f0a77f20c8046041edb974bb4376f4c)

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

 libavformat/options_table.h |    1 +
 1 file changed, 1 insertion(+)

diff --git a/libavformat/options_table.h b/libavformat/options_table.h
index e3943fd..c1a66a8 100644
--- a/libavformat/options_table.h
+++ b/libavformat/options_table.h
@@ -93,6 +93,7 @@ static const AVOption avformat_options[] = {
 {"strict", "how strictly to follow the standards", OFFSET(strict_std_compliance), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX, D|E, "strict"},
 {"strict", "strictly conform to all the things in the spec no matter what the consequences", 0, AV_OPT_TYPE_CONST, {.i64 = FF_COMPLIANCE_STRICT }, INT_MIN, INT_MAX, D|E, "strict"},
 {"normal", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_COMPLIANCE_NORMAL }, INT_MIN, INT_MAX, D|E, "strict"},
+{"unofficial", "allow unofficial extensions", 0, AV_OPT_TYPE_CONST, {.i64 = FF_COMPLIANCE_UNOFFICIAL }, INT_MIN, INT_MAX, D|E, "strict"},
 {"experimental", "allow non-standardized experimental variants", 0, AV_OPT_TYPE_CONST, {.i64 = FF_COMPLIANCE_EXPERIMENTAL }, INT_MIN, INT_MAX, D|E, "strict"},
 {NULL},
 };



More information about the ffmpeg-cvslog mailing list