mirrored from git://anongit.freedesktop.org/gstreamer/gst-devtools
-
Notifications
You must be signed in to change notification settings - Fork 15
/
ChangeLog
20278 lines (14932 loc) · 775 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=== release 1.19.2 ===
2021-09-23 01:36:10 +0100 Tim-Philipp Müller <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* gst-devtools.doap:
* meson.build:
Release 1.19.2
2021-09-13 18:24:18 +0200 Vivienne Watermeier <[email protected]>
* validate/gst/validate/validate.c:
validate: fix relative paths for test files
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/256>
2021-09-10 17:11:29 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-override-registry.c:
validate: Fix double freeing of GstStructure
gst_validate_get_config is transfer-container only
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/255>
2021-08-20 09:22:28 +0200 Edward Hervey <[email protected]>
* validate/gst/validate/gst-validate-utils.c:
validate-utils: Only modify structure fields that really need updates
This avoids memory corruption in users of that structure which
were (rightfullly) assuming static fields (such as name) wouldn't
change. Without this, they would be using strings which will have been freed in
the meantime.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/252>
2021-07-15 14:42:51 +0200 Edward Hervey <[email protected]>
* validate/gst/validate/media-descriptor.c:
validate-media-descriptor: Don't check segment position field
The position field of GstSegment is meant for private usage within
elements. Don't compare the values of it when doing media-check.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/251>
2021-06-08 12:28:49 -0400 Thibault Saunier <[email protected]>
* meson.build:
* validate/gst/validate/meson.build:
validate: use `extract_objects` to avoid rebuilding all files for the tracer
And add the tracer to the plugins list so it can be used in our
uninstalled environment.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/250>
2021-06-01 15:29:21 +0100 Tim-Philipp Müller <[email protected]>
* meson.build:
Back to development
=== release 1.19.1 ===
2021-06-01 00:16:57 +0100 Tim-Philipp Müller <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* gst-devtools.doap:
* meson.build:
Release 1.19.1
2021-05-25 21:25:14 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
validate: Error out on invalid 'foreach' iterator types
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/248>
2021-05-25 21:00:09 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
validate: Handle unknown type in foreach types
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/248>
2021-05-24 01:26:41 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-utils.c:
validate: Make array delemiter a line continuation char
Making its usage more friendly
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/248>
2021-05-24 01:20:47 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
* validate/tests/launcher_tests/foreach_array.validatetest:
validate:scenario: Allow iterating over arrays in `foreach`
We used to only support ranges, but we want to allow iterating over
values in an array too.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/248>
2021-05-24 01:19:13 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-enums.h:
* validate/gst/validate/gst-validate-scenario.c:
* validate/gst/validate/gst-validate-utils.c:
* validate/gst/validate/gst-validate-utils.h:
* validate/gst/validate/validate.c:
* validate/tests/check/validate/utilities.c:
validate: Add a flag to allow defining how to resolve variables in structs
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/248>
2021-05-23 22:43:04 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/flow/formatting.c:
validate:flow: Log caps features
No reason not to use directy the GstCaps serialization function here
This commits avoids needing regenerated all expectations to remove
the `;` which is not generated anymore as it is simple and makes
merging simpler.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/248>
2021-05-20 16:43:25 +0100 Philippe Normand <[email protected]>
* validate/launcher/utils.py:
validate: launcher: Simplify fakesink handling
Now the function returns either a fakeaudiosink or a fakevideosink, depending on
the media type.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/246>
2021-05-20 10:45:34 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/flow/formatting.c:
* validate/gst/validate/flow/formatting.h:
* validate/tests/launcher_tests/simple_repeat/flow-expectations/log-sink-sink-expected:
validate:flow: Sort fields in serialized structures
Otherwise change in element implementations could lead to meaningless
breakages
2021-01-12 15:38:03 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
validate:scenario: Allow forcing running action on idle from scenario file
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/235>
2021-01-12 15:37:08 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
* validate/tests/launcher_tests/run_command_with_envvars.validatetest:
validate:scenario: Add a `run-command` action type
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/235>
2021-01-12 15:36:05 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-monitor.c:
validate:monitor: Only get_name on GstObject
GObject don't have such method!
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/235>
2021-04-29 10:09:05 +0200 Stéphane Cerveau <[email protected]>
* validate/launcher/apps/gstvalidate.py:
* validate/launcher/baseclasses.py:
validate: add config file support
Each test can now use a config file for
the given media file used to test.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/243>
2021-04-21 13:54:38 +0200 François Laignel <[email protected]>
* validate/tests/check/validate/padmonitor.c:
* validate/tests/check/validate/reporting.c:
Use gst_element_request_pad_simple...
Instead of the deprecated gst_element_get_request_pad.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/241>
2021-04-19 15:00:18 +0200 Edward Hervey <[email protected]>
* validate/data/scenarios/seek_forward.scenario:
scenario: Fix action variable name
This was always meant to be `on-message=eos` (like in fast_forward.scenario)
Fixes #58
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/240>
2021-03-19 17:16:33 +1100 Matthew Waters <[email protected]>
* validate/tests/check/validate/test-utils.c:
gst: don't use volatile to mean atomic
volatile is not sufficient to provide atomic guarantees and real atomics
should be used instead. GCC 11 has started warning about using volatile
with atomic operations.
https://gitlab.gnome.org/GNOME/glib/-/merge_requests/1719
Discovered in https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/issues/868
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/238>
2021-02-26 15:32:29 +0100 Stéphane Cerveau <[email protected]>
* validate/data/bash-completion/completions/gst-validate-1.0:
bash-completion: add gst-validate script
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/237>
2021-01-30 10:01:54 -0600 Brady J. Garvin <[email protected]>
* validate/launcher/apps/gstcheck.py:
* validate/launcher/baseclasses.py:
* validate/launcher/main.py:
validate:launcher: Ensure a positive job count.
The default number of jobs to use is half of the available cores
rounded down, but in situations where only one core is available (such
as under some VMs), this means that `gst-validate-launcher` defaults
to using zero jobs, a case that the test-running code is not prepared
to handle.
This change makes the code match the documentation for the `--jobs` option,
guards against negative values both in the default setting and in argument
parsing, and introduces some defensive programming to prevent other situations
where the code might try to use zero jobs.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/154>
2021-01-08 08:38:12 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-pad-monitor.c:
pad-monitor: Plug a leak
2021-01-05 10:06:40 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
validate: Do not check strv length on NULL pointers
This is not legal
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/234>
2020-12-15 18:18:29 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
* validate/gst/validate/validate.c:
* validate/tests/launcher_tests/foreach.validatetest:
* validate/tests/launcher_tests/foreach_deep.validatetest:
validate: Allow using the new nested structure syntax
And port the deeply nested tests we have
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/233>
2020-12-15 18:18:29 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/validate.c:
validate: Only consider the first pipeline when using test files
And port the deeply nested tests we have
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/233>
2020-12-15 18:18:29 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
validate: Add missing GstValidateAction annotations
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/233>
2020-12-15 18:15:50 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
validate: Add an `expected-values` parameter to `wait, message-type=XX`
Allowing more precise filtering of the message we are waiting for.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/233>
2020-12-15 18:02:00 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
validate: scenario: Add a GstValidateScenario::action-done signal
Allowing application to know when a specific action is done.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/233>
2020-12-15 18:00:58 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-internal.h:
* validate/gst/validate/gst-validate-pipeline-monitor.c:
* validate/gst/validate/gst-validate-report.c:
* validate/gst/validate/gst-validate-scenario.c:
validate: Enhance printing action execution information
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/233>
2020-12-15 17:58:51 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-bin-monitor.c:
* validate/gst/validate/gst-validate-bin-monitor.h:
validate: Add an API to get the bin monitor scenario
This is useful for applications that use Validate directly.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/233>
2020-12-10 16:26:15 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
scenario: Ensure that messages are handled from the right thread
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/233>
2020-11-29 10:05:36 +0000 Philippe Normand <[email protected]>
* debug-viewer/org.freedesktop.GstDebugViewer.appdata.xml.in:
debug-viewer: Make appdata valid again
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/229>
2020-12-08 11:46:37 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
validate:scenario: Fix the refcount management for actions in structures
Handling the refcounting the same whether the action is blocking or not
as we were leaking a ref for non-blocking waits.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/231>
2020-12-08 10:57:15 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
validate:scenario: Minor cleanup
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/231>
2020-12-08 10:55:28 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
validate: Use gst_validate_action_*ref everywhere.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/231>
2020-11-30 23:06:18 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
validate: Add support to check properties of object properties
And recursively
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/231>
2020-11-06 12:43:57 +0100 Stéphane Cerveau <[email protected]>
* validate/launcher/main.py:
validate: add sync-version
Be able by the command line to change the sync version
which is usually the GST_VALIDATE_TESTSUITE_VERSION
from the test suite
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/227>
2020-11-19 22:41:40 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
scenario: Add a 'non-blocking' flag to the `wait` signal
This way we can execute actions that will lead to the signal
emission later in the execution.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/228>
2020-11-20 10:16:28 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
* validate/gst/validate/gst-validate-scenario.h:
validate:scenario: Rename 'interlaced' action to 'non-blocking'
It is a better and more understandable naming.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/228>
2020-10-23 22:40:41 +0900 Seungha Yang <[email protected]>
* validate/gst-libs/gst/video/meson.build:
* validate/plugins/ssim/meson.build:
* validate/tools/meson.build:
meson: Check cairo-png dependency
Should check whether libpng dependent methods are available or not
Fixes: https://gitlab.freedesktop.org/gstreamer/gst-build/-/issues/128
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/225>
2020-11-04 18:49:03 +0530 Nirbheek Chauhan <[email protected]>
* meson.build:
meson: Enable some MSVC warnings for parity with GCC/Clang
This makes it easier to do development with MSVC by making it warn
on common issues that GCC/Clang error out for in our CI configuration.
Continuation from https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/223
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/226>
2020-10-16 12:49:02 +0200 Stéphane Cerveau <[email protected]>
* meson.build:
* validate/gst/validate/gst-validate-report.c:
* validate/gst/validate/gst-validate-reporter.c:
* validate/gst/validate/gst-validate-scenario.c:
* validate/gst/validate/gst-validate-utils.c:
meson: update glib minimum version to 2.56
In order to support the symbol g_enum_to_string in various
project using GStreamer ( gst-validate etc.), the glib minimum
version should be 2.56.0.
Remove compat code as glib requirement
is now > 2.56
Version used by Ubuntu 18.04 LTS
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/224>
2020-03-22 09:51:40 -0300 Thibault Saunier <[email protected]>
* validate/launcher/apps/gstvalidate.py:
validate:launcher: Bump hard timeouts for all transcodin tests
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/172>
2020-03-21 11:57:51 -0300 Thibault Saunier <[email protected]>
* validate/launcher/apps/gstvalidate.py:
* validate/launcher/baseclasses.py:
* validate/launcher/utils.py:
launcher: Avoid variable framerate when encoding to theora
It is not supported by theoraenc.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/172>
2020-03-20 09:05:52 -0300 Thibault Saunier <[email protected]>
* validate/launcher/apps/gstvalidate.py:
validate: Scale down even more to speed up encoding in VP9
From 3min to 50secs to execute here.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/172>
2020-03-19 18:48:08 -0300 Thibault Saunier <[email protected]>
* validate/launcher/baseclasses.py:
* validate/tools/gst-validate-transcoding.c:
* validate/tools/meson.build:
validate:transcoding: Port to GstTranscoder
Remove flag to force EOS on sigintr, making it the only choice
Also add support for variable framerate
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/172>
2020-03-19 18:41:24 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-pad-monitor.c:
* validate/gst/validate/gst-validate-pad-monitor.h:
* validate/tests/check/validate/padmonitor.c:
validate: Use pad.last_flowret instead of trying to compute it ourselves
Which makes it more accurate
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/172>
2020-03-19 18:26:58 -0300 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-report.c:
* validate/gst/validate/gst-validate-report.h:
* validate/gst/validate/gst-validate-reporter.c:
report: Add a way to force backtraces on reports
And stop report simple debug message
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/172>
2020-03-17 12:19:46 -0300 Thibault Saunier <[email protected]>
* validate/launcher/apps/gstvalidate.py:
validate:launcher: Add a way to define test timeout from dicts
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/172>
2020-08-06 08:00:53 -0400 Xavier Claessens <[email protected]>
* meson.build:
* validate/gst/validate/meson.build:
* validate/meson.build:
* validate/pkgconfig/gst-validate-uninstalled.pc.in:
* validate/pkgconfig/gst-validate.pc.in:
* validate/pkgconfig/meson.build:
Meson: Use pkg-config generator
2020-09-10 21:38:00 +0000 Jordan Petridis <[email protected]>
* validate/data/gstvalidate.supp:
gstvalidate.supp: update location of gst.supp
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/221>
2020-05-12 09:26:40 -0400 Thibault Saunier <[email protected]>
* docs/gst-validate-launcher.md:
docs: Update gst-validate-launcher documentation
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/193>
2020-09-08 17:30:56 +0100 Tim-Philipp Müller <[email protected]>
* .gitlab-ci.yml:
ci: include template from gst-ci master branch again
2020-09-08 16:59:12 +0100 Tim-Philipp Müller <[email protected]>
* meson.build:
Back to development
=== release 1.18.0 ===
2020-09-08 00:10:18 +0100 Tim-Philipp Müller <[email protected]>
* .gitlab-ci.yml:
* ChangeLog:
* NEWS:
* RELEASE:
* gst-devtools.doap:
* meson.build:
Release 1.18.0
2020-08-26 15:47:23 +0100 Tim-Philipp Müller <[email protected]>
* validate/launcher/testsuites/check.py:
Revert "Revert "launcher: add webrtcbin datachannel tests to valgrind skip list""
This reverts commit ff79af843bc40a554795ee2a0682cfd12272dd24.
Looks like most of these are still problematic and flaky in valgrind,
so re-add to skiplist for now.
https://gitlab.freedesktop.org/thaytan/gst-plugins-base/-/jobs/4275045
2020-08-24 23:59:14 +0100 Tim-Philipp Müller <[email protected]>
* validate/launcher/testsuites/check.py:
Revert "launcher: add webrtcbin datachannel tests to valgrind skip list"
This reverts commit 369c74941f1607b421bc2f16edcaea0b887926a9.
Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/issues/1383
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/220>
=== release 1.17.90 ===
2020-08-20 16:16:50 +0100 Tim-Philipp Müller <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* gst-devtools.doap:
* meson.build:
Release 1.17.90
2020-08-13 21:55:09 -0400 Thibault Saunier <[email protected]>
* validate/launcher/testsuites/check.py:
validate:check: Blacklist new ges valgrind test
I can't find what the issue is and the test is very long anyway
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/219>
2020-08-13 20:51:52 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/flow/formatting.c:
* validate/gst/validate/flow/gstvalidateflow.c:
* validate/meson.build:
validate: flow: Plug some leaks
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/219>
2020-08-13 16:19:50 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
validate:scenario: Plug some leaks
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/219>
2020-08-14 00:27:25 +0100 Tim-Philipp Müller <[email protected]>
* validate/launcher/testsuites/check.py:
launcher: add webrtcbin datachannel tests to valgrind skip list
They were previously not run because the sctp plugin wasn't built
but they will be run now that we bundle libusrsctp.
https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1465
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/218>
2020-07-25 21:12:00 +0100 Tim-Philipp Müller <[email protected]>
* validate/gst/validate/gst-validate-bin-monitor.h:
* validate/gst/validate/gst-validate-element-monitor.h:
* validate/gst/validate/gst-validate-monitor.h:
* validate/gst/validate/gst-validate-override.h:
* validate/gst/validate/gst-validate-pad-monitor.h:
* validate/gst/validate/gst-validate-pipeline-monitor.h:
* validate/gst/validate/gst-validate-reporter.h:
* validate/gst/validate/gst-validate-runner.h:
* validate/gst/validate/gst-validate-scenario.h:
* validate/gst/validate/media-descriptor-parser.h:
* validate/gst/validate/media-descriptor-writer.h:
* validate/gst/validate/media-descriptor.h:
validate: silence g-ir-scanner warnings about GST_IS_VALIDATE_*
Which it complains about because we say our prefix is 'gst_validate'
so it should really be GST_VALIDATE_IS_* instead.
Hide the boilerplate defines from g-ir-scanner, it doesn't need
to process them.
Fixes #46
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/214>
2020-07-27 09:06:39 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/meson.build:
Revert "validate: fix up gir namespace and symbol prefix"
This reverts commit b73e81614021a856fc7d3ff221a9bbf5ebf2ce6e.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/214>
2020-07-25 23:40:05 +0100 Tim-Philipp Müller <[email protected]>
* validate/gst/validate/meson.build:
validate: fix up gir namespace and symbol prefix
Change gir namespace and symbol prefix from
GstValidate / gst_validate to Gst / gst, same
as we do for other libs like GstVideo etc.
Helps with warnings about GST_IS_VALIDATE_*
Fixes #46, Closes !214
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/215>
2020-07-25 13:57:01 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/media-descriptor-writer.c:
validate: Fix media descriptor mp3 like formats
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/216>
2020-07-25 20:27:48 +0100 Tim-Philipp Müller <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
validate-scenario: reflow #ifdef to work around bogus g-ir-scanner warning
Looks like a scanner bug.
The endif comments are the wrong way round too, but that's not it.
gst-validate-scenario.c:126: mismatched #endif /* G_HAVE_GNUC_VARARGS */
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/213>
2020-07-03 02:04:19 +0100 Tim-Philipp Müller <[email protected]>
* meson.build:
Back to development
=== release 1.17.2 ===
2020-07-03 00:37:27 +0100 Tim-Philipp Müller <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* gst-devtools.doap:
* meson.build:
Release 1.17.2
2020-06-18 12:46:39 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
validate: Always check if scenario is done from the right thread
Action will be set_done from the right thread and we will check if the action is done from there
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/212>
2020-06-16 15:34:04 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-reporter.c:
validate: Print errors on action failures
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/207>
2020-06-15 17:32:13 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-runner.c:
* validate/gst/validate/gst-validate-scenario.c:
* validate/gst/validate/gst-validate-utils.c:
validate: Plug some leaks
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/207>
2020-06-15 16:17:55 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
* validate/gst/validate/gst-validate-scenario.h:
* validate/tests/launcher_tests/simple_interlaced_action.validatetest:
validate: Move action finalization to _set_done where it belongs
gst_validate_action_set_done is the place where we should finalize the
action, not in `execute_next`, this way we better handle printing
interlaced action finalization too.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/207>
2020-06-15 10:50:14 -0400 Thibault Saunier <[email protected]>
* validate/data/scenarios/change_state_intensive.scenario:
* validate/gst/validate/gst-validate-internal.h:
* validate/gst/validate/gst-validate-report.c:
* validate/gst/validate/gst-validate-reporter.c:
* validate/gst/validate/gst-validate-scenario.c:
* validate/gst/validate/gst-validate-scenario.h:
* validate/tests/launcher_tests/foreach.validatetest:
* validate/tests/launcher_tests/foreach/flow-expectations/log-sink-sink-expected:
* validate/tests/launcher_tests/foreach_deep.validatetest:
* validate/tests/launcher_tests/foreach_repeat.validatetest:
validate:scenario: Replace the `sub-action` with a `foreach` action type
Sub-actions were really hard to use and conceptually weird. The
implementation was ugly and made the code complex for nothing.
Instead this commit introduces a `foreach` action type which allows
repeating actions passed in an `actions` array the number of time
specified by any `GstIntRange` value defined in the structure or its
`repeat` field.
This commit also makes sure that all action got through
gst_validate_action_set_done upon finalization.
+ Cleanup surrounding code
+ Add tests
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/207>
2020-06-15 09:17:55 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
* validate/gst/validate/gst-validate-scenario.h:
* validate/tests/launcher_tests/simple_repeat.validatetest:
* validate/tests/launcher_tests/simple_repeat/flow-expectations/log-sink-sink-expected:
validate: scenario: Implement 'repeat' by copying actions
Instead of trying to reuse the same action structure and deal with
that in a complex way, copy the action the required number of times.
And add a simple test
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/207>
2020-06-15 09:32:23 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
validate:scenario: Round results of expressions in a sensible way
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/207>
2020-06-15 10:54:20 -0400 Thibault Saunier <[email protected]>
* validate/launcher/baseclasses.py:
launcher: Keep running tests forever on KNOWN_ERROR
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/207>
2020-06-15 09:37:21 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-report.c:
* validate/gst/validate/gst-validate-scenario.c:
* validate/gst/validate/gst-validate-scenario.h:
validate: Add private action type to check number of action type calls
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/207>
2020-06-15 09:14:16 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
validate:scenario: Avoid dereferencing NULL structure
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/207>
2020-06-15 09:08:51 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-reporter.c:
* validate/gst/validate/gst-validate-runner.c:
validate: Fix marking expected issues as criticals
And never mark a repeat expected reports as repeated
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/207>
2020-06-12 10:08:25 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-utils.c:
validate: Add a way to use the expression parser in any field
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/207>
2020-06-12 10:05:57 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-utils.c:
validate: Allow variables to be set with other types than strings
And use value serialization from GStreamer to convert
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/207>
2020-06-12 09:58:24 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
scenario: Add an action to remove a feature/plugin from the registry
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/207>
2020-06-10 17:18:49 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
* validate/tests/launcher_tests/check_set_props_and_time_props.validatetest:
valiadate: Add a test for setting/checking (timed) properties
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/207>
2020-06-10 16:44:04 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
validate:scenario: Add action to set and check several properties at once
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/207>
2020-06-10 15:39:12 -0400 Thibault Saunier <[email protected]>
* meson.build:
* validate/gst/validate/gst-validate-scenario.c:
* validate/gst/validate/meson.build:
* validate/tools/meson.build:
validate: Add an action type to set timed value properties
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/207>
2020-06-19 10:26:17 +0100 Philippe Normand <[email protected]>
* debug-viewer/org.freedesktop.GstDebugViewer.appdata.xml.in:
* debug-viewer/screenshots/gst-debug-viewer.png:
debug-viewer: Add screenshot
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/210>
2020-06-20 00:28:39 +0100 Tim-Philipp Müller <[email protected]>
* meson.build:
Back to development
=== release 1.17.1 ===
2020-06-19 19:27:58 +0100 Tim-Philipp Müller <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* gst-devtools.doap:
* meson.build:
Release 1.17.1
2020-06-12 19:31:41 +0530 Vivek R <[email protected]>
* validate/gst/validate/flow/formatting.c:
validate: flow: record GstRegionOfInterestMeta
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/206>
2020-06-15 18:37:51 -0400 Thibault Saunier <[email protected]>
* validate/launcher/main.py:
validate:launcher: Ensure that the main directory exists
Fixes https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/issues/53 part 1
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/209>
2020-06-15 18:06:33 -0400 Thibault Saunier <[email protected]>
* validate/tests/check/meson.build:
* validate/tests/launcher_tests/meson.build:
* validate/tests/meson.build:
validate:tests: Cleanup the way set environment vars
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/209>
2020-06-15 17:56:54 -0400 Thibault Saunier <[email protected]>
* validate/tools/gst-validate-launcher.in:
validate: Stop trying to support uninstalled autotools
Fix https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/issues/53 part 2
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/209>
2020-06-09 17:29:08 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/flow/formatting.c:
validateflow: Plug leak
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/205>
2020-06-08 14:01:49 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
scenario: Fix waiting for signal
The signal callback signature was just wrong and not generic leading to
crash if waiting for any signal that didn't match it. This commit fixes
it.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/205>
2020-06-08 14:00:44 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
scenario: Add an option to set properties on all instances
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/205>
2020-06-08 13:45:26 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/flow/formatting.c:
* validate/gst/validate/flow/formatting.h:
* validate/gst/validate/flow/gstvalidateflow.c:
validate:flow: Add a way to dump buffer content as hex
Useful in unit tests with very small buffers
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/205>
2020-06-02 19:10:14 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
validate: Cleanup implementation of appsrc-push
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/205>
2020-05-07 09:16:11 -0400 Thibault Saunier <[email protected]>
* validate/tools/gst-validate.c:
validate: Remove useless condition
CID 1462652
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/192>
2020-05-07 09:09:14 -0400 Thibault Saunier <[email protected]>
* validate/plugins/ssim/gstvalidatessim.c:
validate:ssim: Avoid dereferencing NULL pointer
CID 1462650
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/192>
2020-05-07 09:06:32 -0400 Thibault Saunier <[email protected]>
* validate/tools/gst-validate.c:
validate: Give a proper argv[0] when running test files
Fixes CID 1462613
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/192>
2020-05-07 09:05:06 -0400 Thibault Saunier <[email protected]>
* validate/tools/gst-validate-transcoding.c:
validate:transcoding: Exit after printing the help
Fixes CID 1455575
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/192>
2020-05-07 08:49:34 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
validate: Ensure Scenario isn't NULL when preparing action
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/192>
2020-06-03 14:29:22 -0400 Thibault Saunier <[email protected]>
* docs/fakesrc.simple.validatetest:
* docs/fakesrc.simple.validatetest.ini:
* docs/fakesrc.simple/flow-expectations/log-sink-sink-expected:
* docs/gst-validate-config.md:
* docs/gst-validate-flow.md:
* docs/gst-validate-test-file.md:
* docs/plugins/validateflow.md:
* docs/sitemap.txt:
validate: Update documentation now core plugins are integrated
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/204>
2020-06-03 10:55:22 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/flow/formatting.c:
* validate/gst/validate/flow/formatting.h:
* validate/gst/validate/flow/gstvalidateflow.c:
* validate/gst/validate/flow/gstvalidateflow.h:
* validate/gst/validate/flow/meson.build:
* validate/gst/validate/gst-validate-extra-checks.c:
* validate/gst/validate/gst-validate-internal.h:
* validate/gst/validate/meson.build:
* validate/gst/validate/validate.c:
* validate/plugins/extra_checks/meson.build:
* validate/plugins/meson.build:
validate: Make extracheck and flow part of core instead plugins
It makes things more complex and doesn't bring anything!
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/204>
2020-06-03 09:32:32 +0200 Edward Hervey <[email protected]>
* validate/launcher/baseclasses.py:
launcher: Limit copies of massive debug logs in markdown file
When debugging is activated, we could end up with log files ranging in the
multi-megabyte or even gigabyte range. Copying those is expensive from a cpu/io
point of view in addition to clobbering the storage.
Instead of always copying those files, check if they are smaller than 500kB. If
not, don't copy them and instead provide a link to their location.
Fixes #52
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/203>
2020-05-30 15:54:31 -0400 Thibault Saunier <[email protected]>
* docs/plugins/validateflow.md:
* validate/plugins/flow/formatting.c:
* validate/plugins/flow/formatting.h:
* validate/plugins/flow/gstvalidateflow.c:
validateflow: Allow specifying checksum type
And add an extra mode 'checksum-as-id' which basically numerate
buffers checksums as they are being received so that it is simpler
to compare expectations when you are tracking buffers from both
sinkpads and srcpads.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/202>
2020-05-29 18:11:54 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-scenario.c:
* validate/gst/validate/validate.c:
validate: Add a parameter to force waiting on the test clock
This allows to wait for a new buffer to reach the sink without
actually cranking that buffer, allowing to quite the test without
waiting for EOS in a 100% reproducible way
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/201>
2020-05-29 18:11:11 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-runner.c:
* validate/gst/validate/validate.c:
validate: Error out when a config hasn't been used at all
It probably means a plugin is not available
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/201>
2020-05-28 00:16:57 +0100 Tim-Philipp Müller <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* gst-devtools.doap:
* validate/AUTHORS:
* validate/meson.build:
Ship validate as part of a gst-devtools tarball
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/199>
2020-05-27 20:59:41 +0100 Tim-Philipp Müller <[email protected]>
* meson.build:
* meson_options.txt:
meson: make debug_viewer a feature option
... and disable by default.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/199>
2020-05-28 17:04:20 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-utils.c:
validate: Fix mixup in quarks usages
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/200>
2020-05-27 19:35:26 -0400 Thibault Saunier <[email protected]>
* validate/gst/validate/gst-validate-utils.c:
validate: Add missing return func when GLib < 2.50
CID 1463854
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/200>
2020-05-26 23:25:48 -0400 Thibault Saunier <[email protected]>
* docs/gst-validate-action-types.md:
* docs/gst-validate-test-file.md:
* docs/plugins/validateflow.md:
* validate/gst/validate/gst-validate-report.c:
validate: Update documentation
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/200>
2020-05-05 18:09:08 -0400 Thibault Saunier <[email protected]>
* docs/plugins/fakesrc.simple.validatetest:
* docs/plugins/fakesrc.simple.validatetest.yaml:
* docs/plugins/fakesrc.simple/flow-expectations/log-sink-sink-expected:
* docs/plugins/validateflow.md:
* validate/gst/validate/gst-validate-utils.c:
* validate/gst/validate/validate.c:
* validate/launcher/apps/gstvalidate.py:
* validate/launcher/baseclasses.py:
* validate/plugins/flow/gstvalidateflow.c:
validateflow: Add a way to configure when to generate expectations
By default, generate them whenever the file is missing but adding a way
to override that with `validateflow,generate-expectations=true` to force
regenerating them or setting `validateflow,generate-expectations=false`