[FFmpeg-devel] [PATCH] avfilter: add dumpwave filter.

Dmytro Humeniuk dmitry.gumenyuk at gmail.com
Mon Jan 15 01:06:08 EET 2018


Hi
> On 14 Jan 2018, at 04:04, Michael Niedermayer <michael at niedermayer.cc> wrote:
> 
> On Sat, Jan 13, 2018 at 11:59:59PM +0100, Dmytro Humeniuk wrote:
>> Hi,
>>> On 12 Jan 2018, at 00:20, Dmitry Gumenyuk <dmitry.gumenyuk at gmail.com> wrote:
>>> --
>>> Best regards,
>>> Dmytro
>>> 
>>>> On 11 Jan 2018, at 23:57, Paul B Mahol <onemda at gmail.com> wrote:
>>>> 
>>>>> On 1/11/18, Dmitry Gumenyuk <dmitry.gumenyuk at gmail.com> wrote:
>>>>> 
>>>>>>> On 11 Jan 2018, at 23:02, Paul B Mahol <onemda at gmail.com> wrote:
>>>>>>> 
>>>>>>> On 1/11/18, Dmitry Gumenyuk <dmitry.gumenyuk at gmail.com> wrote:
>>>>>>> 
>>>>>>>>> On 11 Jan 2018, at 22:41, Paul B Mahol <onemda at gmail.com> wrote:
>>>>>>>>> 
>>>>>>>>> On 1/11/18, Dmitry Gumenyuk <dmitry.gumenyuk at gmail.com> wrote:
>>>>>>>>> Hello
>>>>>>>>> 
>>>>>>>>> 2018-01-10 11:33 GMT+01:00 Moritz Barsnick <barsnick at gmx.net>:
>>>>>>>>>>> On Wed, Jan 10, 2018 at 08:58:05 +0100, dmitry.gumenyuk at gmail.com
>>>>>>>>>>> wrote:
>>>>>>>>>>> 
>>>>>>>>>>> + at table @option
>>>>>>>>>>> + at item d
>>>>>>>>>>> +Dimensions @code{WxH}.
>>>>>>>>>>> + at code{W} - number of data values in json, values will be scaled
>>>>>>>>>>> according to @code{H}.
>>>>>>>>>>> +The default value is @var{640x480}
>>>>>>>>>>> +
>>>>>>>>>>> + at item s
>>>>>>>>>>> +Samples count per value per channel
>>>>>>>>>> 
>>>>>>>>>> In most other filters/filtersources, s+size is used for dimensions,
>>>>>>>>>> d+duration for time, and n for an amount/number of frames/samples or
>>>>>>>>>> so. Might be a good idea to align with this. And use aliases (i.e.
>>>>>>>>>> implement both "s" and "size").
>>>>>>>>>> 
>>>>>>>>>>> +static const AVOption dumpwave_options[] = {
>>>>>>>>>>> +    { "d", "set width and height", OFFSET(w),
>>>>>>>>>>> AV_OPT_TYPE_IMAGE_SIZE,
>>>>>>>>>>> {.str = "640x480"}, 0, 0, FLAGS },
>>>>>>>>>>> +    { "s", "set number of samples per value per channel",
>>>>>>>>>>> OFFSET(s),
>>>>>>>>>>> AV_OPT_TYPE_INT64,  {.i64 = 0}, 0, INT64_MAX, FLAGS },
>>>>>>>>>>> +    { "json", "set json dump file", OFFSET(json),
>>>>>>>>>>> AV_OPT_TYPE_STRING,
>>>>>>>>>>> {
>>>>>>>>>>> .str = NULL }, 0, 0, FLAGS },
>>>>>>>>>>> +    { NULL }
>>>>>>>>>> [...]
>>>>>>>>>>> +static av_cold int init(AVFilterContext *ctx)
>>>>>>>>>>> +{
>>>>>>>>>>> +    DumpWaveContext *dumpwave = ctx->priv;
>>>>>>>>>>> +    if(!dumpwave->s) {
>>>>>>>>>>> +        dumpwave->is_disabled = 1;
>>>>>>>>>>> +        av_log(ctx, AV_LOG_ERROR, "Invalid samples per value
>>>>>>>>>>> config\n");
>>>>>>>>>>> +    }
>>>>>>>>>>> +    return 0;
>>>>>>>>>> 
>>>>>>>>>> I don't like the idea of having to provide the "s" parameter. Is
>>>>>>>>>> there
>>>>>>>>>> really no useful default?
>>>>>>>>>> 
>>>>>>>>>> And now, if s=0, what does the filter do? Just sit around? Couldn't
>>>>>>>>>> it
>>>>>>>>>> fail instead?
>>>>>>>>>> 
>>>>>>>>>> Apart from that:
>>>>>>>>>> "if (" is the bracket style ffmpeg uses.
>>>>>>>>>> 
>>>>>>>>>>> +        if (dumpwave->json && !(dump_fp =
>>>>>>>>>>> av_fopen_utf8(dumpwave->json,
>>>>>>>>>>> "w")))
>>>>>>>>>>> +            av_log(ctx, AV_LOG_WARNING, "Flushing dump failed\n");
>>>>>>>>>> 
>>>>>>>>>> I would appreciate evaluation of errno and printing the appropriate
>>>>>>>>>> string (using av_strerror(), I believe).
>>>>>>>>>> 
>>>>>>>>>>> +    switch (inlink->format) {
>>>>>>>>>>> +        case AV_SAMPLE_FMT_DBLP:
>>>>>>>>>> 
>>>>>>>>>> As Kyle hinted: Can this not force a conversion (implicit insertion
>>>>>>>>>> of
>>>>>>>>>> aformat filter) to e.g. double by only supporting this format, and
>>>>>>>>>> reducing this switch to one or two cases? (The filter's output isn't
>>>>>>>>>> really meant for transparent reuse anyway? af_volumedetect e.g. also
>>>>>>>>>> supports only one, meaning its output can be a different format than
>>>>>>>>>> its input.) It's also really hard to go through and later to
>>>>>>>>>> maintain.
>>>>>>>>>> It the big switch/case remains, one or two code macros would be
>>>>>>>>>> appropriate.
>>>>>>>>> 
>>>>>>>>> I checked solution used in volumedetect and couldn't find a way to
>>>>>>>>> read across formats.
>>>>>>>> 
>>>>>>>> I do not understand what you are trying to do.
>>>>>>> Sorry, I'm trying to add support for 8, 16, 24, 32, 64 bit sample
>>>>>>> formats
>>>>>>>>> How would you implement such macros? Since version 3.2 astats filter
>>>>>>>>> uses same approach for reading different formats and as far as I know
>>>>>>>>> macros harder to debug
>>>>>>>> 
>>>>>>>> astats is using all formats because of numerous reasons. astats uses
>>>>>>>> raw
>>>>>>>> values,
>>>>>>>> your filter just convert each raw value to float representation.
>>>>>>> Is this wrong, as I'd like to have high precision?
>>>>>> 
>>>>>> For rendering to small size image?
>>>>> Data can be used for analysis as well. Any size I would say as user may
>>>>> define size
>>>> 
>>>> Than use floats.
>>> Ok, will give it a try
>> Here is updated patch
>>>> _______________________________________________
>>>> ffmpeg-devel mailing list
>>>> ffmpeg-devel at ffmpeg.org
>>>> http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
> 
>> Changelog                            |    1 
>> doc/filters.texi                     |   22 +++
>> libavfilter/Makefile                 |    1 
>> libavfilter/af_dumpwave.c            |  233 +++++++++++++++++++++++++++++++++++
>> libavfilter/allfilters.c             |    1 
>> libavfilter/version.h                |    4 
>> tests/fate/filter-audio.mak          |   13 +
>> tests/ref/fate/filter-dumpwave       |    1 
>> tests/ref/fate/filter-dumpwave-24bit |    1 
>> tests/ref/fate/filter-dumpwave-fltp  |    1 
>> 10 files changed, 276 insertions(+), 2 deletions(-)
>> 96a0fb60341b2ace0f96e8ef844b11bd0a0ea907  FFmpeg-devel-v2-avfilter-add-dumpwave-filter.patch
> 
> fails fate test:
> probably because floats are not binary identical between platforms
> comparission would have to happen against a reference with some fuzzyness
> if floats are used
added fuzziness to tests I only checked on Mac and AWS based CentOS

> make fate-filter-dumpwave-fltp
> TEST    filter-dumpwave-fltp
> --- ./tests/ref/fate/filter-dumpwave-fltp	2018-01-14 02:05:40.791627253 +0100
> +++ tests/data/fate/filter-dumpwave-fltp	2018-01-14 04:02:56.903775485 +0100
> @@ -1 +1 @@
> -1.000000,1.000000,1.000000,1.000000,1.000000,0.858258,0.539333,0.438221,0.372104,0.366304,0.605164,0.637041,0.647097,0.650465,0.660785,0.686207,0.692284,0.714718,1.000000,1.000000,1.000000,1.000000,1.000000,0.932305,0.620423,0.442906,0.368353,0.319873,0.545479,0.620829,0.647351,0.677884,0.675255,0.679301,0.672597,0.688984,0.706110,0.716553,0.740333,0.731576,0.713456,0.726138,0.718627,0.724037,0.726700,0.736484,0.729591,0.722254,0.722133,0.719773,0.717406,0.723866,0.740628,0.731773,0.729539,0.718669,0.705302,0.724621,0.739104,0.724219,0.727740,0.720731,0.709535,0.723419,0.734793,0.740019,0.730477,0.716716,0.712089,0.714344,0.728412,0.736718,0.739912,0.729902,0.710555,0.719894,0.722910,0.722449,0.737566,0.729739,0.716124,0.721822,0.715009,0.723679,0.722796,0.732713,0.737485,0.720121,0.728077,0.716547,0.716084,0.719229,0.732125,0.744413,0.730455,0.715725,0.710203,0.732332,0.741583,0.724931,0.724937,0.709796,0.709250,0.723284,0.732987,0.745560,0.728379,0.711723,0.724620,0.713805,0.730486,0.724913,0.741663,0.728598,0.718227,0.727791,0.723163,0.723398,0.731062,0.734626,0.731220,0.727052,0.720081,0.738048,0.717014,0.733038,0.743975,0.734933,0.732812,0.720501,0.717626,0.725392,0.732820,0.749270,0.704439,0.722127,0.711660,0.734862,0.738333,0.733339,0.736081,0.708228,0.726093,0.731247,0.730739,0.743854,0.736958,0.724179,0.723631,0.723821,0.732181,0.726260,0.739140,0.733514,0.724304,0.729432,0.722905,0.728259,0.721314,0.738705,0.740450,0.727002,0.723862,0.723334,0.709887,0.730005,0.739521,0.741841,0.729584,0.712231,0.336937,0.298472,0.209081,0.714031,0.724366,0.715397,0.721422,0.732867,0.730268,0.748117,0.729724,0.712682,0.726029,0.721250,0.726328,0.733099,0.737674,0.731491,0.720964,0.578512,0.298573,0.272381,0.206786,0.237417,0.252874,0.226084,0.172041,0.186558,0.190866,0.182826,0.175867,0.165237,0.151661,0.150387,0.146097,0.152924,0.199538,0.153670,0.122749,0.159706,0.126894,0.165266,0.239186,0.233079,0.222228,0.206099,0.201526,0.191191,0.198300,0.197981,0.163304,0.145302,0.159978,0.149547,0.147227,0.141445,0.159250,0.135666,0.139789,0.127052,0.160830,0.186189,0.132828,0.150849,0.143468,0.144028,0.183438,0.135804,0.217010,0.197695,0.171126,0.203445,0.194493,0.241693,0.406420,0.339634,0.383268,0.455703,0.457827,0.520291,0.524483,0.238330,0.110808,0.168339,0.147951,0.162243,0.150819,0.184741,0.175898,0.194101,0.190111,0.179677,0.233265,0.318130,0.320481,0.354988,0.481297,0.460593,0.467382,0.568170,0.517503,0.520205,0.548765,0.553441,0.600469,0.545632,0.600640,0.568467,0.569154,0.546451,0.582425,0.571239,0.555579,0.571522,0.607882,0.576581,0.600963,0.610136,0.595841,0.591522,0.525182,0.543039,0.535541,0.568935,0.537147,0.642570,0.626792,0.578389,0.569345,0.595519,0.579207,0.581767,0.613901,0.575467,0.583127,0.579487,0.603304,0.562584,0.560308,0.610506,0.561111,0.563899,0.381348,0.379008,0.253669,0.460863,0.711883,0.729942,0.724539,0.714967,0.705897,0.725739,0.735627,0.742161,0.732013,0.713670,0.715329,0.718217,0.730857,0.592026,0.603543,0.485509,0.363700,0.264931,0.282851,0.643812,0.730715,0.715021,0.723639,0.713050,0.724163,0.728431,0.737754,0.730148,0.721797,0.721400,0.723999,0.719481,0.726417,0.739884,0.726363,0.729663,0.715532,0.719538,0.708151,0.731072,0.747187,0.728660,0.726613,0.716812,0.715687,0.725991,0.726762,0.751239,0.738150,0.711591,0.723254,0.718762,0.746486,0.734648,0.725186,0.711405,0.717831,0.724430,0.722088,0.739427,0.734160,0.717988,0.727660,0.721939,0.726270,0.719455,0.735387,0.743644,0.723760,0.727418,0.720378,0.715459,0.724325,0.734440,0.740681,0.732058,0.715527,0.719033,0.717268,0.728859,0.740613,0.742972,0.728086,0.709030,0.719161,0.723549,0.726643,0.739857,0.735571,0.720428,0.722604,0.725676,0.727857,0.739551,0.730475,0.715310,0.726128,0.721116,0.722589,0.729138,0.740910,0.729306,0.726668,0.717646,0.725112,0.713459,0.730843,0.743416,0.730909,0.727784,0.717161,0.713982,0.723304,0.731416,0.749010,0.730449,0.719547,0.715115,0.716023,0.734460,0.728302,0.739427,0.727087,0.713513,0.725010,0.723686,0.724884,0.731997,0.734340,0.728727,0.693627,0.728784,0.723745,0.739751,0.732782,0.722184,0.727462,0.719573,0.721123,0.724998,0.734660,0.734712,0.725043,0.722626,0.723222,0.710904,0.730531,0.741462,0.735233,0.728171,0.713188,0.716663,0.722527,0.724713,0.743040,0.724682,0.717445,0.714630,0.708284,0.734476,0.699138,0.532407,0.442498,0.400918,0.355128,0.309918,0.248948,0.158553,0.147877,0.674200,0.720693,0.728688,0.721800,0.732922,0.743805,0.731951,0.738284,0.731081,0.731093,0.733115,0.707788,0.444923,0.412918,0.340215,0.262937,0.250349,0.215054,0.139889,0.161877,0.132695,0.153043,0.178970,0.122343,0.143666,0.146711,0.195903,0.170892,0.276601,0.238787,0.204432,0.256136,0.295939,0.239652,0.284766,0.295380,0.330743,0.370179,0.320568,0.257844,0.180962,0.170186,0.186331,0.178293,0.113517,0.233356,0.167461,0.115629,0.193337,0.191038,0.202300,0.304221,0.317445,0.246462,0.295359,0.320382,0.288341,0.319974,0.316320,0.330785,0.329100,0.310133,0.282031,0.213775,0.350954,0.380485,0.307958,0.351828,0.393056,0.350981,0.453510,0.473442,0.540284,0.516216,0.603404,0.556632,0.591924,0.579931,0.396341,0.299853,0.303798,0.297094,0.279675,0.258558,0.417952,0.332794,0.309517,0.387591,0.409073,0.391377,0.428548,0.516457,0.515962,0.524509,0.569197,0.595600,0.598179,0.586404,0.570604,0.569281,0.588599,0.594373,0.597649,0.615876,0.561009,0.577146,0.589312,0.592530,0.550463,0.551038,0.606072,0.604416,0.655783,0.595122,0.538098,0.389445,0.272194,0.540215,0.542095,0.549248,0.573062,0.579642,0.573118,0.572743,0.592692,0.583184,0.552493,0.568285,0.589139,0.571588,0.556753,0.595836,0.630269,0.597137,0.488225,0.347092,0.286099,0.366327,0.649498,0.756743,0.711298,0.719262,0.757913,0.710452,0.706664,0.747384,0.716401,0.710435,0.742745,0.733614,0.714059,0.725425,0.748371,0.715471,0.715689,0.751005,0.383424,0.543304,0.717851,0.735742,0.719975,0.725764,0.748057,0.706992,0.711115,0.751541,0.710409,0.708143,0.759903,0.719540,0.704172,0.758216,0.726936,0.700870,0.751976,0.726916,0.705335,0.743198,0.727901,0.709083,0.730888,0.737053,0.715735,0.722046,0.736705,0.720850,0.714872,0.738044,0.722373,0.712685,0.743363,0.723412,0.711854,0.742301,0.722805,0.733364,0.707359,0.750534,0.721420,0.702777,0.749953,0.727744,0.700834,0.747712,0.729716,0.699351,0.742505,0.727801,0.704355,0.736950,0.736657,0.708611,0.728755,0.740617,0.709061,0.724837,0.743028,0.711733,0.723548,0.742172,0.713453,0.723111,0.738481,0.718783,0.723631,0.737043,0.720849,0.714271,0.732983,0.734784,0.710186,0.726337,0.744514,0.705553,0.725768,0.739792,0.728077,0.707064,0.737820,0.735137,0.704437,0.730470,0.743551,0.702571,0.732589,0.746277,0.702843,0.724997,0.751937,0.702865,0.722701,0.750335,0.707710,0.718330,0.749578,0.717181,0.719136,0.743255,0.728472,0.712757,0.728306,0.741419,0.713193,0.720430,0.754870,0.718739,0.711283,0.758151,0.721479,0.705882,0.755512,0.720269,0.703466,0.735995,0.751547,0.709571,0.722190,0.756596,0.704799,0.715729,0.755869,0.710600,0.712699,0.758070,0.718994,0.717050,0.746810,0.727704,0.715373,0.735590,0.733008,0.714378,0.725329,0.740216,0.717403,0.710533,0.729894,0.693987,0.587768,0.502688,0.525693,0.516775,0.511696,0.473457,0.444074,0.465045,0.429726,0.412075,0.369313,0.329445,0.305959,0.240333,0.641779,0.724398,0.701575,0.747225,0.725585,0.684201,0.612099,0.546590,0.503191,0.526074,0.505146,0.446389,0.465481,0.448487,0.417446,0.391045,0.343813,0.320181,0.258764,0.241668,0.189530,0.142873,0.157287,0.165445,0.192255,0.137583,0.139002,0.134500,0.287154,0.351916,0.293061,0.364687,0.397715,0.429355,0.524339,0.524467,0.520499,0.508603,0.559377,0.368069,0.164384,0.163397,0.120486,0.205538,0.150500,0.111980,0.166251,0.158987,0.306947,0.289644,0.362536,0.367776,0.387989,0.485289,0.545698,0.532848,0.513362,0.565849,0.583167,0.544731,0.584662,0.570802,0.583310,0.570594,0.599108,0.563213,0.548218,0.542949,0.565844,0.600136,0.588134,0.573516,0.578478,0.590521,0.555043,0.554922,0.560007,0.612432,0.606998,0.570844,0.550222,0.582718,0.572938,0.579646,0.585976,0.560054,0.514494,0.566194,0.564815,0.575461,0.645236,0.563480,0.590997,0.570147,0.555875,0.539656,0.590824,0.594470,0.592896,0.602625,0.549499,0.611599,0.572959,0.591319,0.589460,0.551811,0.566512,0.564639,0.614177,0.547875,0.396662,0.307126,0.172629,0.441375,0.680673,0.751469,0.722806,0.588483,0.582915,0.565876,0.578834,0.595932,0.556568,0.612285,0.570464,0.587057,0.565883,0.593059,0.569029,0.534140,0.349448,0.215013,0.276477,0.623042,0.696869,0.685143,0.719663,0.737190,0.755151,0.726025,0.714721,0.712053,0.714640,0.720430,0.743733,0.750345,0.718849,0.711144,0.714843,0.714334,0.725673,0.762379,0.737157,0.722936,0.710881,0.706635,0.767496,0.715661,0.707068,0.713999,0.739455,0.752270,0.724763,0.712256,0.710139,0.717277,0.727246,0.755813,0.746759,0.717384,0.705529,0.706060,0.719702,0.732741,0.760755,0.729350,0.718240,0.715523,0.714636,0.717284,0.737025,0.753960,0.722617,0.715784,0.708112,0.709513,0.727078,0.762408,0.746239,0.721714,0.707990,0.705856,0.714945,0.735405,0.760176,0.654258,0.737983,0.757958,0.728876,0.712977,0.709876,0.717108,0.727267,0.746639,0.748290,0.717772,0.709286,0.713374,0.715636,0.728005,0.761250,0.735247,0.721463,0.716874,0.710418,0.714677,0.735266,0.757754,0.729692,0.714396,0.707368,0.710669,0.729828,0.749334,0.752397,0.718298,0.706464,0.708124,0.719114,0.729194,0.758562,0.731793,0.718500,0.720633,0.782719,0.715891,0.715671,0.718355,0.720950,0.740356,0.754179,0.718208,0.713248,0.710593,0.709908,0.722396,0.762683,0.741903,0.724495,0.711420,0.705995,0.713733,0.736806,0.759246,0.730239,0.711932,0.708783,0.716779,0.730679,0.741627,0.755470,0.720472,0.709848,0.710643,0.712935,0.724190,0.759969,0.737380,0.727660,0.718064,0.710381,0.711870,0.731416,0.688292,0.715189,0.734444,0.757581,0.726122,0.717919,0.707154,0.710005,0.724170,0.759493,0.748364,0.722862,0.710645,0.706161,0.717410,0.733247,0.758410,0.732630,0.713077,0.712436,0.671528,0.469513,0.233696,0.311195,0.320420,0.367389,0.362505,0.346831,0.328538,0.301621,0.287011,0.286690,0.214465,0.163265,0.152579,0.163518,0.144076,0.160782,0.135019,0.630613,0.597477,0.237097,0.198741,0.292621,0.323590,0.332767,0.360086,0.312172,0.279391,0.302348,0.335329,0.256106,0.215853,0.174218,0.135164,0.136013,0.133883,0.165344,0.135052,0.128345,0.150472,0.205497,0.226469,0.263599,0.269841,0.170750,0.188872,0.186840,0.250134,0.298306,0.396104,0.427885,0.543909,0.424536,0.472631,0.512415,0.527628,0.538201,0.352777,0.137645,0.143076,0.246058,0.263169,0.248701,0.240569,0.168567,0.194020,0.236052,0.284744,0.285092,0.407308,0.491072,0.478449,0.451156,0.429528,0.490049,0.515566,0.580273,0.582295,0.588152,0.594467,0.564015,0.538235,0.572068,0.604544,0.647035,0.568192,0.608431,0.583999,0.585483,0.595099,0.594672,0.596411,0.582694,0.560740,0.621372,0.575073,0.547070,0.627652,0.593563,0.621620,0.586489,0.590537,0.600251,0.625004,0.577153,0.570160,0.606588,0.588507,0.591719,0.619735,0.609646,0.614669,0.579035,0.524839,0.640188,0.576647,0.560327,0.589136,0.574958,0.581608,0.610523,0.600005,0.594807,0.415057,0.330775,0.348687,0.396542,0.672117,0.723955,0.723567,0.723081,0.736399,0.738797,0.725828,0.720043,0.601666,0.561489,0.595882,0.558544,0.570027,0.577182,0.548895,0.548908,0.347306,0.357285,0.237377,0.580480,0.703569,0.720167,0.731121,0.732540,0.743617,0.731436,0.708197,0.723609,0.720998,0.721977,0.734014,0.736209,0.725814,0.723207,0.723041,0.726563,0.719056,0.729847,0.741391,0.724859,0.729588,0.719098,0.720348,0.717385,0.732965,0.745913,0.726066,0.716518,0.708595,0.728737,0.742360,0.732139,0.731107,0.717320,0.716150,0.719504,0.729701,0.746598,0.732365,0.722496,0.714218,0.718923,0.728152,0.728376,0.741974,0.730084,0.714578,0.728150,0.719273,0.728601,0.726802,0.736534,0.732485,0.725136,0.724259,0.724578,0.716306,0.726466,0.739287,0.731719,0.732103,0.716522,0.717032,0.714119,0.730491,0.743419,0.740030,0.719759,0.710935,0.731383,0.736073,0.742159,0.731421,0.713264,0.721349,0.719988,0.730493,0.733872,0.737872,0.723866,0.717884,0.721266,0.725806,0.720238,0.734459,0.733243,0.722119,0.726957,0.718741,0.726565,0.714592,0.732242,0.742935,0.725439,0.726836,0.717610,0.711754,0.728007,0.733194,0.744611,0.729491,0.715490,0.714082,0.715279,0.730334,0.748382,0.725652,0.711697,0.715536,0.727916,0.726933,0.745189,0.732148,0.711409,0.723626,0.718507,0.731067,0.726650,0.739967,0.728664,0.719181,0.724035,0.719857,0.719321,0.725289,0.735995,0.730689,0.728807,0.720367,0.723034,0.709003,0.733111,0.746213,0.729288,0.730585,0.715614,0.711483,0.724817,0.729381,0.745292,0.642570,0.337972,0.222941,0.199253,0.557917,0.736973,0.728063,0.711478,0.721841,0.723217,0.723962,0.741826,0.735359,0.719901,0.726042,0.718349,0.726303,0.722474,0.733124,0.712207,0.514321,0.258485,0.191512,0.191568,0.208579,0.197767,0.159554,0.166685,0.159137,0.156098,0.140183,0.135656,0.158351,0.204264,0.179447,0.145815,0.186971,0.154190,0.172361,0.264647,0.249852,0.360308,0.295691,0.240511,0.219274,0.128982,0.155513,0.164454,0.161931,0.132662,0.207530,0.147174,0.210396,0.151111,0.186041,0.157637,0.125936,0.211981,0.239249,0.251700,0.311075,0.234826,0.230703,0.313952,0.281432,0.256490,0.366061,0.264166,0.243863,0.261983,0.413307,0.380981,0.492869,0.420291,0.520805,0.531118,0.553591,0.552420,0.567550,0.578776,0.549849,0.557985,0.434722,0.333954,0.236992,0.328843,0.325971,0.203870,0.268857,0.383662,0.375773,0.438134,0.417538,0.422026,0.565881,0.582816,0.551380,0.551130,0.580823,0.545862,0.543732,0.586506,0.604576,0.581742,0.581295,0.551463,0.569139,0.556255,0.569214,0.588226,0.581470,0.627098,0.596086,0.576726,0.572954,0.605795,0.578559,0.571867,0.565670,0.575661,0.609835,0.588236,0.624934,0.573511,0.572515,0.555435,0.563173,0.557587,0.578116,0.618013,0.578225,0.580694,0.590855,0.585934,0.585363,0.612975,0.598365,0.584673,0.549799,0.570197,0.618477,0.596165,0.586621,0.442706,0.334194,0.243121,0.311331,0.636602,0.707214,0.719460,0.728204,0.721297,0.719018,0.732579,0.729194,0.725977,0.727010,0.743814,0.723710,0.728655,0.628553,0.558622,0.552421,0.373848,0.257946,0.279335,0.488714,0.699833,0.739322,0.724375,0.724333,0.737915,0.723226,0.722602,0.728291,0.734953,0.717845,0.724287,0.718031,0.715061,0.717984,0.726193,0.735433,0.719109,0.727262,0.733828,0.726461,0.724164,0.739346,0.730675,0.729563,0.725637,0.742532,0.721622,0.725064,0.729975,0.730429,0.718999,0.725529,0.695749,0.734219,0.723839,0.734220,0.734464,0.723981,0.718157,0.736161,0.720684,0.717402,0.715020,0.722694,0.721875,0.716569,0.735752,0.720938,0.724215,0.730151,0.738189,0.721097,0.732469,0.735577,0.730498,0.720141,0.736966,0.731033,0.726389,0.722812,0.736244,0.718244,0.720137,0.721958,0.715690,0.715191,0.718824,0.732252,0.721350,0.719896,0.730658,0.783584,0.720844,0.711397,0.720923,0.725021,0.716381,0.730739,0.732948,0.724540,0.720467,0.740826,0.725570,0.724575,0.730908,0.737576,0.723859,0.727079,0.736010,0.722816,0.720204,0.728826,0.727815,0.716737,0.715549,0.718111,0.719339,0.719322,0.729040,0.733479,0.721686,0.725697,0.736822,0.726820,0.725612,0.738860,0.732063,0.726496,0.726555,0.740571,0.656223,0.723796,0.728434,0.736799,0.725844,0.724446,0.740163,0.730635,0.724207,0.730917,0.734293,0.721812,0.721282,0.733457,0.719132,0.715520,0.715774,0.725195,0.722186,0.718917,0.739118,0.724739,0.723615,0.728776,0.738377,0.724282,0.730260,0.739063,0.731981,0.716725,0.684159,0.433223,0.231157,0.214786,0.206197,0.223375,0.222949,0.152217,0.117950,0.588154,0.728723,0.733535,0.726428,0.717015,0.727914,0.725047,0.712196,0.716219,0.724869,0.722152,0.596353,0.327881,0.216518,0.197994,0.240207,0.179869,0.211432,0.131779,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000
> +1.000000,1.000000,1.000000,1.000000,1.000000,0.858258,0.539333,0.438221,0.372100,0.366304,0.605164,0.637041,0.647097,0.650465,0.660785,0.686207,0.692284,0.714718,1.000000,1.000000,1.000000,1.000000,1.000000,0.932305,0.620423,0.442906,0.368353,0.319873,0.545479,0.620829,0.647351,0.677884,0.675255,0.679301,0.672597,0.688984,0.706110,0.716553,0.740333,0.731576,0.713456,0.726138,0.718627,0.724037,0.726700,0.736484,0.729591,0.722254,0.722133,0.719773,0.717406,0.723866,0.740628,0.731773,0.729539,0.718669,0.705302,0.724621,0.739104,0.724219,0.727740,0.720731,0.709535,0.723419,0.734793,0.740019,0.730477,0.716716,0.712089,0.714344,0.728412,0.736718,0.739912,0.729902,0.710555,0.719894,0.722910,0.722449,0.737566,0.729739,0.716124,0.721822,0.715009,0.723679,0.722796,0.732713,0.737485,0.720121,0.728077,0.716547,0.716084,0.719229,0.732125,0.744413,0.730455,0.715725,0.710203,0.732332,0.741583,0.724931,0.724937,0.709796,0.709250,0.723284,0.732987,0.745560,0.728379,0.711723,0.724620,0.713805,0.730486,0.724913,0.741663,0.728598,0.718227,0.727791,0.723163,0.723398,0.731062,0.734626,0.731220,0.727052,0.720081,0.738048,0.717014,0.733038,0.743975,0.734933,0.732812,0.720501,0.717626,0.725392,0.732820,0.749270,0.704439,0.722127,0.711660,0.734862,0.738333,0.733339,0.736081,0.708228,0.726093,0.731247,0.730739,0.743854,0.736958,0.724179,0.723631,0.723821,0.732181,0.726260,0.739140,0.733514,0.724304,0.729432,0.722905,0.728259,0.721314,0.738705,0.740450,0.727002,0.723862,0.723334,0.709887,0.730005,0.739521,0.741841,0.729584,0.712231,0.336937,0.298472,0.209081,0.714031,0.724366,0.715397,0.721422,0.732867,0.730268,0.748117,0.729724,0.712682,0.726029,0.721250,0.726328,0.733099,0.737674,0.731491,0.720964,0.578512,0.298573,0.272381,0.206786,0.237417,0.252874,0.226084,0.172041,0.186558,0.190866,0.182826,0.175867,0.165237,0.151661,0.150387,0.146097,0.152924,0.199537,0.153670,0.122749,0.159706,0.126894,0.165266,0.239186,0.233079,0.222228,0.206099,0.201526,0.191191,0.198300,0.197981,0.163304,0.145302,0.159978,0.149547,0.147227,0.141445,0.159249,0.135666,0.139789,0.127052,0.160830,0.186189,0.132828,0.150849,0.143468,0.144028,0.183438,0.135804,0.217010,0.197695,0.171126,0.203445,0.194493,0.241693,0.406420,0.339634,0.383268,0.455703,0.457827,0.520291,0.524483,0.238330,0.110808,0.168339,0.147951,0.162243,0.150819,0.184741,0.175898,0.194101,0.190111,0.179677,0.233265,0.318130,0.320481,0.354988,0.481297,0.460593,0.467382,0.568170,0.517503,0.520205,0.548765,0.553441,0.600469,0.545632,0.600640,0.568467,0.569154,0.546451,0.582425,0.571239,0.555579,0.571522,0.607882,0.576581,0.600963,0.610136,0.595841,0.591522,0.525182,0.543039,0.535541,0.568935,0.537147,0.642570,0.626792,0.578389,0.569345,0.595519,0.579207,0.581767,0.613901,0.575467,0.583127,0.579487,0.603304,0.562584,0.560308,0.610506,0.561111,0.563899,0.381348,0.379003,0.253670,0.460863,0.711883,0.729942,0.724539,0.714967,0.705897,0.725739,0.735627,0.742161,0.732013,0.713670,0.715329,0.718217,0.730857,0.592026,0.603543,0.485509,0.363700,0.264931,0.282851,0.643812,0.730715,0.715021,0.723639,0.713050,0.724163,0.728431,0.737754,0.730148,0.721797,0.721400,0.723999,0.719481,0.726417,0.739884,0.726363,0.729663,0.715532,0.719538,0.708151,0.731072,0.747187,0.728660,0.726613,0.716812,0.715687,0.725991,0.726762,0.751239,0.738150,0.711591,0.723254,0.718762,0.746486,0.734648,0.725186,0.711405,0.717831,0.724430,0.722088,0.739427,0.734160,0.717988,0.727660,0.721939,0.726270,0.719455,0.735387,0.743644,0.723760,0.727418,0.720378,0.715459,0.724325,0.734440,0.740681,0.732058,0.715527,0.719033,0.717267,0.728859,0.740613,0.742972,0.728086,0.709030,0.719161,0.723549,0.726643,0.739857,0.735571,0.720428,0.722604,0.725676,0.727857,0.739551,0.730475,0.715310,0.726128,0.721116,0.722589,0.729138,0.740910,0.729306,0.726668,0.717646,0.725112,0.713459,0.730843,0.743416,0.730909,0.727784,0.717161,0.713982,0.723304,0.731416,0.749010,0.730449,0.719547,0.715115,0.716023,0.734460,0.728302,0.739427,0.727087,0.713513,0.725010,0.723686,0.724884,0.731997,0.734340,0.728727,0.693627,0.728784,0.723745,0.739751,0.732782,0.722184,0.727462,0.719573,0.721123,0.724998,0.734660,0.734712,0.725043,0.722626,0.723222,0.710904,0.730531,0.741462,0.735233,0.728171,0.713188,0.716663,0.722527,0.724713,0.743040,0.724682,0.717445,0.714630,0.708284,0.734476,0.699138,0.532407,0.442498,0.400918,0.355128,0.309918,0.248948,0.158553,0.147877,0.674200,0.720693,0.728688,0.721800,0.732922,0.743805,0.731951,0.738284,0.731081,0.731093,0.733115,0.707788,0.444923,0.412918,0.340215,0.262937,0.250349,0.215054,0.139889,0.161877,0.132695,0.153043,0.178970,0.122343,0.143666,0.146711,0.195903,0.170892,0.276601,0.238787,0.204432,0.256136,0.295939,0.239652,0.284766,0.295380,0.330743,0.370179,0.320568,0.257844,0.180962,0.170186,0.186331,0.178293,0.113517,0.233356,0.167461,0.115629,0.193337,0.191038,0.202300,0.304221,0.317445,0.246462,0.295359,0.320380,0.288341,0.319974,0.316320,0.330785,0.329100,0.310133,0.282031,0.213775,0.350954,0.380485,0.307958,0.351828,0.393056,0.350981,0.453510,0.473442,0.540284,0.516216,0.603404,0.556632,0.591924,0.579931,0.396341,0.299853,0.303798,0.297094,0.279675,0.258558,0.417952,0.332794,0.309517,0.387591,0.409073,0.391377,0.428548,0.516457,0.515962,0.524509,0.569197,0.595600,0.598179,0.586404,0.570604,0.569281,0.588599,0.594373,0.597649,0.615876,0.561009,0.577146,0.589312,0.592530,0.550463,0.551038,0.606072,0.604416,0.655783,0.595122,0.538098,0.389445,0.272194,0.540215,0.542095,0.549248,0.573062,0.579642,0.573118,0.572743,0.592692,0.583184,0.552493,0.568285,0.589139,0.571588,0.556753,0.595836,0.630269,0.597138,0.488225,0.347092,0.286099,0.366328,0.649498,0.756743,0.711298,0.719262,0.757913,0.710452,0.706664,0.747384,0.716401,0.710435,0.742745,0.733614,0.714059,0.725425,0.748371,0.715471,0.715689,0.751005,0.383424,0.543304,0.717851,0.735742,0.719975,0.725764,0.748057,0.706992,0.711115,0.751541,0.710409,0.708143,0.759903,0.719540,0.704172,0.758216,0.726936,0.700870,0.751976,0.726916,0.705335,0.743198,0.727901,0.709083,0.730888,0.737053,0.715735,0.722046,0.736705,0.720850,0.714872,0.738044,0.722373,0.712685,0.743363,0.723412,0.711854,0.742301,0.722805,0.733364,0.707359,0.750534,0.721420,0.702777,0.749953,0.727744,0.700834,0.747712,0.729716,0.699351,0.742505,0.727801,0.704355,0.736950,0.736657,0.708611,0.728755,0.740617,0.709061,0.724837,0.743027,0.711733,0.723548,0.742172,0.713453,0.723111,0.738481,0.718783,0.723631,0.737043,0.720849,0.714271,0.732983,0.734784,0.710186,0.726337,0.744514,0.705553,0.725768,0.739792,0.728077,0.707064,0.737820,0.735137,0.704437,0.730470,0.743551,0.702571,0.732589,0.746277,0.702843,0.724997,0.751937,0.702865,0.722701,0.750335,0.707710,0.718330,0.749578,0.717181,0.719136,0.743255,0.728472,0.712757,0.728306,0.741419,0.713193,0.720430,0.754870,0.718739,0.711283,0.758151,0.721479,0.705882,0.755512,0.720269,0.703466,0.735995,0.751547,0.709571,0.722190,0.756596,0.704799,0.715729,0.755869,0.710600,0.712699,0.758070,0.718994,0.717050,0.746810,0.727704,0.715373,0.735590,0.733008,0.714378,0.725329,0.740216,0.717403,0.710533,0.729894,0.693987,0.587768,0.502688,0.525693,0.516775,0.511696,0.473457,0.444074,0.465045,0.429726,0.412075,0.369313,0.329445,0.305959,0.240333,0.641779,0.724398,0.701575,0.747225,0.725585,0.684201,0.612099,0.546590,0.503191,0.526074,0.505146,0.446389,0.465481,0.448487,0.417446,0.391045,0.343813,0.320181,0.258764,0.241668,0.189530,0.142873,0.157287,0.165445,0.192255,0.137583,0.139002,0.134500,0.287154,0.351916,0.293061,0.364687,0.397716,0.429355,0.524339,0.524467,0.520499,0.508603,0.559377,0.368069,0.164384,0.163397,0.120486,0.205538,0.150500,0.111980,0.166251,0.158987,0.306947,0.289644,0.362536,0.367776,0.387989,0.485289,0.545698,0.532848,0.513362,0.565849,0.583167,0.544731,0.584662,0.570803,0.583310,0.570594,0.599108,0.563213,0.548218,0.542949,0.565844,0.600136,0.588134,0.573516,0.578478,0.590521,0.555043,0.554922,0.560007,0.612432,0.606998,0.570844,0.550222,0.582718,0.572938,0.579646,0.585976,0.560054,0.514494,0.566194,0.564815,0.575461,0.645236,0.563480,0.590996,0.570147,0.555875,0.539656,0.590824,0.594470,0.592896,0.602625,0.549499,0.611599,0.572959,0.591319,0.589460,0.551811,0.566512,0.564639,0.614177,0.547875,0.396662,0.307126,0.172631,0.441375,0.680673,0.751469,0.722806,0.588483,0.582915,0.565876,0.578834,0.595932,0.556568,0.612285,0.570464,0.587057,0.565883,0.593059,0.569029,0.534140,0.349448,0.215013,0.276477,0.623042,0.696869,0.685143,0.719663,0.737190,0.755151,0.726025,0.714721,0.712053,0.714640,0.720430,0.743733,0.750345,0.718849,0.711144,0.714843,0.714334,0.725673,0.762379,0.737157,0.722936,0.710881,0.706635,0.767496,0.715661,0.707068,0.713999,0.739455,0.752270,0.724763,0.712256,0.710139,0.717277,0.727246,0.755813,0.746759,0.717384,0.705529,0.706060,0.719702,0.732741,0.760755,0.729350,0.718240,0.715523,0.714636,0.717284,0.737025,0.753960,0.722617,0.715784,0.708112,0.709513,0.727078,0.762408,0.746239,0.721714,0.707990,0.705856,0.714945,0.735405,0.760176,0.654258,0.737983,0.757958,0.728876,0.712977,0.709876,0.717108,0.727267,0.746639,0.748290,0.717772,0.709286,0.713374,0.715636,0.728005,0.761250,0.735247,0.721463,0.716874,0.710418,0.714677,0.735266,0.757754,0.729692,0.714396,0.707368,0.710669,0.729828,0.749334,0.752397,0.718298,0.706464,0.708124,0.719114,0.729194,0.758562,0.731793,0.718500,0.720633,0.782719,0.715891,0.715671,0.718355,0.720950,0.740356,0.754179,0.718208,0.713248,0.710593,0.709908,0.722396,0.762683,0.741903,0.724495,0.711420,0.705995,0.713733,0.736806,0.759246,0.730239,0.711932,0.708783,0.716779,0.730679,0.741627,0.755470,0.720472,0.709848,0.710643,0.712935,0.724190,0.759969,0.737380,0.727660,0.718064,0.710381,0.711870,0.731416,0.688292,0.715189,0.734444,0.757581,0.726122,0.717919,0.707154,0.710005,0.724170,0.759493,0.748364,0.722862,0.710645,0.706161,0.717410,0.733247,0.758410,0.732630,0.713077,0.712436,0.671528,0.469513,0.233696,0.311195,0.320420,0.367389,0.362505,0.346831,0.328538,0.301621,0.287011,0.286690,0.214465,0.163265,0.152579,0.163518,0.144076,0.160782,0.135019,0.630613,0.597477,0.237097,0.198741,0.292621,0.323590,0.332767,0.360086,0.312172,0.279391,0.302348,0.335329,0.256106,0.215853,0.174218,0.135164,0.136013,0.133883,0.165344,0.135052,0.128345,0.150472,0.205497,0.226469,0.263599,0.269841,0.170750,0.188872,0.186840,0.250134,0.298306,0.396104,0.427885,0.543909,0.424536,0.472631,0.512415,0.527628,0.538201,0.352777,0.137645,0.143076,0.246058,0.263169,0.248701,0.240569,0.168567,0.194020,0.236052,0.284744,0.285092,0.407308,0.491072,0.478449,0.451156,0.429528,0.490049,0.515566,0.580273,0.582295,0.588152,0.594467,0.564015,0.538235,0.572068,0.604544,0.647035,0.568192,0.608431,0.583999,0.585483,0.595099,0.594672,0.596411,0.582694,0.560740,0.621372,0.575073,0.547070,0.627652,0.593563,0.621620,0.586489,0.590537,0.600251,0.625004,0.577153,0.570160,0.606588,0.588507,0.591719,0.619735,0.609646,0.614669,0.579035,0.524839,0.640188,0.576647,0.560327,0.589136,0.574958,0.581608,0.610523,0.600005,0.594807,0.415057,0.330775,0.348688,0.396542,0.672117,0.723955,0.723567,0.723081,0.736399,0.738797,0.725828,0.720043,0.601666,0.561489,0.595882,0.558544,0.570027,0.577182,0.548895,0.548908,0.347306,0.357285,0.237377,0.580480,0.703569,0.720167,0.731121,0.732540,0.743617,0.731436,0.708197,0.723609,0.720998,0.721977,0.734014,0.736209,0.725814,0.723207,0.723041,0.726563,0.719056,0.729847,0.741391,0.724859,0.729588,0.719098,0.720348,0.717385,0.732965,0.745913,0.726066,0.716518,0.708595,0.728737,0.742360,0.732139,0.731107,0.717320,0.716150,0.719504,0.729701,0.746598,0.732365,0.722496,0.714218,0.718923,0.728152,0.728376,0.741974,0.730084,0.714578,0.728150,0.719273,0.728601,0.726802,0.736534,0.732485,0.725136,0.724259,0.724578,0.716306,0.726466,0.739287,0.731719,0.732103,0.716522,0.717032,0.714119,0.730491,0.743419,0.740030,0.719759,0.710935,0.731383,0.736073,0.742159,0.731421,0.713264,0.721349,0.719988,0.730493,0.733872,0.737872,0.723866,0.717884,0.721266,0.725806,0.720238,0.734459,0.733243,0.722119,0.726957,0.718741,0.726565,0.714592,0.732242,0.742935,0.725439,0.726836,0.717610,0.711754,0.728007,0.733194,0.744611,0.729491,0.715490,0.714082,0.715279,0.730334,0.748382,0.725652,0.711697,0.715536,0.727916,0.726933,0.745189,0.732148,0.711409,0.723626,0.718507,0.731067,0.726650,0.739967,0.728664,0.719181,0.724035,0.719857,0.719321,0.725289,0.735995,0.730689,0.728807,0.720367,0.723034,0.709003,0.733111,0.746213,0.729288,0.730585,0.715614,0.711483,0.724817,0.729381,0.745292,0.642570,0.337972,0.222941,0.199253,0.557917,0.736973,0.728063,0.711478,0.721841,0.723217,0.723962,0.741826,0.735359,0.719901,0.726042,0.718349,0.726303,0.722474,0.733124,0.712207,0.514321,0.258485,0.191512,0.191568,0.208579,0.197767,0.159554,0.166685,0.159137,0.156098,0.140183,0.135656,0.158351,0.204264,0.179447,0.145815,0.186971,0.154190,0.172361,0.264647,0.249852,0.360308,0.295691,0.240511,0.219274,0.128982,0.155513,0.164454,0.161931,0.132662,0.207530,0.147174,0.210396,0.151111,0.186041,0.157637,0.125937,0.211981,0.239249,0.251700,0.311075,0.234826,0.230703,0.313952,0.281432,0.256490,0.366061,0.264166,0.243863,0.261983,0.413306,0.380981,0.492869,0.420291,0.520805,0.531118,0.553591,0.552420,0.567550,0.578776,0.549849,0.557985,0.434722,0.333954,0.236992,0.328843,0.325971,0.203870,0.268857,0.383662,0.375773,0.438134,0.417538,0.422026,0.565881,0.582816,0.551380,0.551130,0.580823,0.545862,0.543732,0.586506,0.604576,0.581742,0.581295,0.551463,0.569139,0.556255,0.569214,0.588226,0.581470,0.627098,0.596086,0.576726,0.572954,0.605795,0.578559,0.571867,0.565670,0.575661,0.609835,0.588236,0.624934,0.573511,0.572515,0.555435,0.563173,0.557587,0.578116,0.618013,0.578225,0.580694,0.590855,0.585934,0.585363,0.612975,0.598365,0.584673,0.549799,0.570197,0.618477,0.596165,0.586621,0.442706,0.334194,0.243121,0.311331,0.636602,0.707214,0.719460,0.728204,0.721297,0.719018,0.732579,0.729194,0.725977,0.727010,0.743814,0.723710,0.728655,0.628553,0.558622,0.552421,0.373848,0.257946,0.279333,0.488714,0.699833,0.739322,0.724375,0.724333,0.737915,0.723226,0.722602,0.728291,0.734953,0.717845,0.724287,0.718031,0.715061,0.717984,0.726193,0.735433,0.719109,0.727262,0.733828,0.726461,0.724164,0.739346,0.730675,0.729563,0.725637,0.742532,0.721622,0.725064,0.729975,0.730429,0.718999,0.725529,0.695749,0.734219,0.723839,0.734220,0.734464,0.723981,0.718157,0.736161,0.720684,0.717402,0.715020,0.722694,0.721875,0.716569,0.735752,0.720938,0.724215,0.730151,0.738189,0.721097,0.732469,0.735577,0.730498,0.720141,0.736966,0.731033,0.726389,0.722812,0.736244,0.718244,0.720137,0.721958,0.715690,0.715191,0.718824,0.732252,0.721350,0.719896,0.730658,0.783584,0.720844,0.711397,0.720923,0.725021,0.716381,0.730739,0.732948,0.724540,0.720467,0.740826,0.725570,0.724575,0.730908,0.737576,0.723859,0.727079,0.736010,0.722816,0.720204,0.728826,0.727815,0.716737,0.715549,0.718111,0.719339,0.719322,0.729040,0.733479,0.721686,0.725697,0.736822,0.726820,0.725612,0.738860,0.732063,0.726496,0.726555,0.740571,0.656223,0.723796,0.728434,0.736799,0.725844,0.724446,0.740163,0.730635,0.724207,0.730917,0.734293,0.721812,0.721282,0.733457,0.719132,0.715520,0.715774,0.725195,0.722186,0.718917,0.739118,0.724739,0.723615,0.728776,0.738377,0.724282,0.730260,0.739063,0.731981,0.716725,0.684159,0.433223,0.231157,0.214786,0.206197,0.223375,0.222949,0.152217,0.117950,0.588154,0.728723,0.733535,0.726428,0.717015,0.727914,0.725047,0.712196,0.716219,0.724869,0.722152,0.596353,0.327881,0.216518,0.197994,0.240207,0.179869,0.211432,0.131779,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000
> Test filter-dumpwave-fltp failed. Look at tests/data/fate/filter-dumpwave-fltp.err for details.
> make: *** [fate-filter-dumpwave-fltp] Error 1
> 
> 
> 
> [...]
> -- 
> Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
> 
> Many things microsoft did are stupid, but not doing something just because
> microsoft did it is even more stupid. If everything ms did were stupid they
> would be bankrupt already.
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-avfilter-add-dumpwave-filter.patch
Type: application/octet-stream
Size: 69704 bytes
Desc: not available
URL: <http://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20180115/dd843114/attachment.obj>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/pkcs7-signature
Size: 3872 bytes
Desc: not available
URL: <http://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20180115/dd843114/attachment.bin>


More information about the ffmpeg-devel mailing list