forked from OpenShot/libopenshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iwyu.txt
4174 lines (3653 loc) · 191 KB
/
iwyu.txt
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
error: no such file or directory: '/home/ferd/devel/libopenshot/build/src/openshot_autogen/mocs_compilation.cpp'
error: no input files
error: unable to handle compilation, expected exactly one compiler job in ''
/home/ferd/devel/libopenshot/src/AudioResampler.h should add these lines:
#include <juce_audio_basics/buffers/juce_AudioSampleBuffer.h> // for AudioS...
#include <juce_audio_basics/sources/juce_AudioSource.h> // for AudioS...
namespace juce { class ResamplingAudioSource; }
namespace openshot { class AudioBufferSource; }
/home/ferd/devel/libopenshot/src/AudioResampler.h should remove these lines:
- #include "AudioBufferSource.h" // lines 34-34
- #include "Exceptions.h" // lines 35-35
- #include "JuceHeader.h" // lines 36-36
The full include-list for /home/ferd/devel/libopenshot/src/AudioResampler.h:
#include <juce_audio_basics/buffers/juce_AudioSampleBuffer.h> // for AudioS...
#include <juce_audio_basics/sources/juce_AudioSource.h> // for AudioS...
namespace juce { class ResamplingAudioSource; }
namespace openshot { class AudioBufferSource; }
---
/home/ferd/devel/libopenshot/src/AudioResampler.cpp should add these lines:
#include <juce_audio_basics/sources/juce_ResamplingAudioSource.h>
#include <math.h> // for round
#include <cstddef> // for NULL
#include "AudioBufferSource.h"
/home/ferd/devel/libopenshot/src/AudioResampler.cpp should remove these lines:
The full include-list for /home/ferd/devel/libopenshot/src/AudioResampler.cpp:
#include "AudioResampler.h"
#include <juce_audio_basics/sources/juce_ResamplingAudioSource.h>
#include <math.h> // for round
#include <cstddef> // for NULL
#include "AudioBufferSource.h"
---
/home/ferd/devel/libopenshot/src/AudioBufferSource.h should add these lines:
#include <juce_audio_basics/buffers/juce_AudioSampleBuffer.h>
#include <juce_audio_basics/sources/juce_PositionableAudioSource.h>
#include <juce_core/maths/juce_MathsFunctions.h>
namespace juce { struct AudioSourceChannelInfo; }
/home/ferd/devel/libopenshot/src/AudioBufferSource.h should remove these lines:
- #include <iomanip> // lines 34-34
- #include "JuceHeader.h" // lines 35-35
The full include-list for /home/ferd/devel/libopenshot/src/AudioBufferSource.h:
#include <juce_audio_basics/buffers/juce_AudioSampleBuffer.h>
#include <juce_audio_basics/sources/juce_PositionableAudioSource.h>
#include <juce_core/maths/juce_MathsFunctions.h>
namespace juce { struct AudioSourceChannelInfo; }
---
/home/ferd/devel/libopenshot/src/AudioBufferSource.cpp should add these lines:
#include <juce_audio_basics/sources/juce_AudioSource.h> // for AudioSourceC...
#include <cstddef> // for NULL, std
/home/ferd/devel/libopenshot/src/AudioBufferSource.cpp should remove these lines:
The full include-list for /home/ferd/devel/libopenshot/src/AudioBufferSource.cpp:
#include "AudioBufferSource.h"
#include <juce_audio_basics/sources/juce_AudioSource.h> // for AudioSourceC...
#include <cstddef> // for NULL, std
---
/home/ferd/devel/libopenshot/src/AudioReaderSource.h should add these lines:
#include <juce_audio_basics/buffers/juce_AudioSampleBuffer.h>
#include <juce_audio_basics/sources/juce_PositionableAudioSource.h>
#include <juce_core/maths/juce_MathsFunctions.h>
#include <stdint.h>
#include <memory>
namespace juce { struct AudioSourceChannelInfo; }
namespace openshot { class Frame; }
/home/ferd/devel/libopenshot/src/AudioReaderSource.h should remove these lines:
- #include <iomanip> // lines 34-34
- #include "JuceHeader.h" // lines 36-36
The full include-list for /home/ferd/devel/libopenshot/src/AudioReaderSource.h:
#include <juce_audio_basics/buffers/juce_AudioSampleBuffer.h>
#include <juce_audio_basics/sources/juce_PositionableAudioSource.h>
#include <juce_core/maths/juce_MathsFunctions.h>
#include <stdint.h>
#include <memory>
#include "ReaderBase.h"
namespace juce { struct AudioSourceChannelInfo; }
namespace openshot { class Frame; }
---
/home/ferd/devel/libopenshot/src/AudioReaderSource.cpp should add these lines:
#include <juce_audio_basics/sources/juce_AudioSource.h> // for AudioSourceC...
#include <cstddef> // for NULL, std
#include "Exceptions.h" // for OutOfBoundsF...
#include "Frame.h" // for Frame
#include "Settings.h" // for openshot
#include "ZmqLogger.h" // for ZmqLogger
/home/ferd/devel/libopenshot/src/AudioReaderSource.cpp should remove these lines:
The full include-list for /home/ferd/devel/libopenshot/src/AudioReaderSource.cpp:
#include "AudioReaderSource.h"
#include <juce_audio_basics/sources/juce_AudioSource.h> // for AudioSourceC...
#include <cstddef> // for NULL, std
#include "Exceptions.h" // for OutOfBoundsF...
#include "Frame.h" // for Frame
#include "Settings.h" // for openshot
#include "ZmqLogger.h" // for ZmqLogger
---
/home/ferd/devel/libopenshot/src/CacheBase.h should add these lines:
#include <stdint.h> // for int64_t
#include <string> // for string
#include "json/json.h" // for Value
namespace juce { class CriticalSection; }
namespace openshot { class Frame; }
/home/ferd/devel/libopenshot/src/CacheBase.h should remove these lines:
- #include <cstdlib> // lines 35-35
- #include "Exceptions.h" // lines 37-37
- #include "Frame.h" // lines 36-36
- #include "Json.h" // lines 38-38
The full include-list for /home/ferd/devel/libopenshot/src/CacheBase.h:
#include <stdint.h> // for int64_t
#include <memory> // for shared_ptr
#include <string> // for string
#include "json/json.h" // for Value
namespace juce { class CriticalSection; }
namespace openshot { class Frame; }
---
/home/ferd/devel/libopenshot/src/CacheBase.cpp should add these lines:
#include <juce_core/threads/juce_CriticalSection.h> // for CriticalSection
#include <ostream> // for stringstream
#include "Settings.h" // for openshot
/home/ferd/devel/libopenshot/src/CacheBase.cpp should remove these lines:
The full include-list for /home/ferd/devel/libopenshot/src/CacheBase.cpp:
#include "CacheBase.h"
#include <juce_core/threads/juce_CriticalSection.h> // for CriticalSection
#include <ostream> // for stringstream
#include "Settings.h" // for openshot
---
/home/ferd/devel/libopenshot/src/CacheDisk.h should add these lines:
#include <qdir.h> // for QDir
#include <stdint.h> // for int64_t
#include <string> // for string
#include <vector> // for vector
#include "json/json.h" // for Value
namespace openshot { class Frame; }
/home/ferd/devel/libopenshot/src/CacheDisk.h should remove these lines:
- #include <QDir> // lines 40-40
- #include "Exceptions.h" // lines 39-39
- #include "Frame.h" // lines 38-38
The full include-list for /home/ferd/devel/libopenshot/src/CacheDisk.h:
#include <qdir.h> // for QDir
#include <stdint.h> // for int64_t
#include <deque> // for deque
#include <map> // for map
#include <memory> // for shared_ptr
#include <string> // for string
#include <vector> // for vector
#include "CacheBase.h" // for CacheBase
#include "json/json.h" // for Value
namespace openshot { class Frame; }
---
/home/ferd/devel/libopenshot/src/CacheDisk.cpp should add these lines:
#include <bits/exception.h> // for exception
#include <juce_core/threads/juce_CriticalSection.h> // for CriticalSection
#include <juce_core/threads/juce_ScopedLock.h> // for GenericScopedLock
#include <qfile.h> // for QFile
#include <qimage.h> // for QImage, QImage::...
#include <qiodevice.h> // for QIODevice, QIODe...
#include <qstring.h> // for QString, operator+
#include <qtextstream.h> // for QTextStream, ope...
#include <stddef.h> // for NULL
#include <algorithm> // for sort
#include <cstdint> // for int64_t
#include <iterator> // for operator!=
#include <ostream> // for stringstream
#include "ChannelLayouts.h" // for ChannelLayout
#include "Exceptions.h" // for InvalidJSON
#include "Frame.h" // for Frame
#include "Json.h" // for stringToJson
#include "Settings.h" // for openshot
/home/ferd/devel/libopenshot/src/CacheDisk.cpp should remove these lines:
- #include <QString> // lines 34-34
- #include <QTextStream> // lines 35-35
- #include <Qt> // lines 33-33
The full include-list for /home/ferd/devel/libopenshot/src/CacheDisk.cpp:
#include "CacheDisk.h"
#include <bits/exception.h> // for exception
#include <juce_core/threads/juce_CriticalSection.h> // for CriticalSection
#include <juce_core/threads/juce_ScopedLock.h> // for GenericScopedLock
#include <qfile.h> // for QFile
#include <qimage.h> // for QImage, QImage::...
#include <qiodevice.h> // for QIODevice, QIODe...
#include <qstring.h> // for QString, operator+
#include <qtextstream.h> // for QTextStream, ope...
#include <stddef.h> // for NULL
#include <algorithm> // for sort
#include <cstdint> // for int64_t
#include <iterator> // for operator!=
#include <ostream> // for stringstream
#include "ChannelLayouts.h" // for ChannelLayout
#include "Exceptions.h" // for InvalidJSON
#include "Frame.h" // for Frame
#include "Json.h" // for stringToJson
#include "QtUtilities.h" // for endl
#include "Settings.h" // for openshot
---
/home/ferd/devel/libopenshot/src/CacheMemory.h should add these lines:
#include <stdint.h> // for int64_t
#include <string> // for string
#include <vector> // for vector
#include "json/json.h" // for Value
namespace openshot { class Frame; }
/home/ferd/devel/libopenshot/src/CacheMemory.h should remove these lines:
- #include "Exceptions.h" // lines 39-39
- #include "Frame.h" // lines 38-38
The full include-list for /home/ferd/devel/libopenshot/src/CacheMemory.h:
#include <stdint.h> // for int64_t
#include <deque> // for deque
#include <map> // for map
#include <memory> // for shared_ptr
#include <string> // for string
#include <vector> // for vector
#include "CacheBase.h" // for CacheBase
#include "json/json.h" // for Value
namespace openshot { class Frame; }
---
/home/ferd/devel/libopenshot/src/CacheMemory.cpp should add these lines:
#include <bits/exception.h> // for exception
#include <juce_core/threads/juce_CriticalSection.h> // for CriticalSection
#include <juce_core/threads/juce_ScopedLock.h> // for GenericScopedLock
#include <algorithm> // for sort
#include <cstddef> // for NULL, std
#include <cstdint> // for int64_t
#include <iterator> // for operator!=, reve...
#include "Exceptions.h" // for InvalidJSON
#include "Frame.h" // for Frame
#include "Json.h" // for stringToJson
#include "Settings.h" // for openshot
/home/ferd/devel/libopenshot/src/CacheMemory.cpp should remove these lines:
The full include-list for /home/ferd/devel/libopenshot/src/CacheMemory.cpp:
#include "CacheMemory.h"
#include <bits/exception.h> // for exception
#include <juce_core/threads/juce_CriticalSection.h> // for CriticalSection
#include <juce_core/threads/juce_ScopedLock.h> // for GenericScopedLock
#include <algorithm> // for sort
#include <cstddef> // for NULL, std
#include <cstdint> // for int64_t
#include <iterator> // for operator!=, reve...
#include "Exceptions.h" // for InvalidJSON
#include "Frame.h" // for Frame
#include "Json.h" // for stringToJson
#include "Settings.h" // for openshot
---
/home/ferd/devel/libopenshot/src/Color.h should add these lines:
#include <stdint.h> // for int64_t
#include <string> // for string
#include "json/json.h" // for Value
/home/ferd/devel/libopenshot/src/Color.h should remove these lines:
- #include <QtGui/QColor> // lines 35-35
The full include-list for /home/ferd/devel/libopenshot/src/Color.h:
#include <stdint.h> // for int64_t
#include <string> // for string
#include "KeyFrame.h" // for Keyframe
#include "json/json.h" // for Value
---
/home/ferd/devel/libopenshot/src/Color.cpp should add these lines:
#include <bits/exception.h> // for exception
#include <math.h> // for sqrt
#include <qcolor.h> // for QColor
#include <qstring.h> // for QString
#include "Exceptions.h" // for InvalidJSON, openshot
#include "Json.h" // for stringToJson
/home/ferd/devel/libopenshot/src/Color.cpp should remove these lines:
The full include-list for /home/ferd/devel/libopenshot/src/Color.cpp:
#include "Color.h"
#include <bits/exception.h> // for exception
#include <math.h> // for sqrt
#include <qcolor.h> // for QColor
#include <qstring.h> // for QString
#include "Exceptions.h" // for InvalidJSON, openshot
#include "Json.h" // for stringToJson
---
/home/ferd/devel/libopenshot/src/ChunkWriter.h should add these lines:
#include <stdint.h> // for int64_t
#include <memory> // for shared_ptr
#include <string> // for string
namespace openshot { class FFmpegWriter; }
namespace openshot { class Frame; }
namespace openshot { class ReaderBase; }
/home/ferd/devel/libopenshot/src/ChunkWriter.h should remove these lines:
- #include <omp.h> // lines 48-48
- #include <unistd.h> // lines 47-47
- #include <QtCore/QDir> // lines 49-49
- #include <cmath> // lines 41-41
- #include <cstdio> // lines 45-45
- #include <ctime> // lines 42-42
- #include <fstream> // lines 44-44
- #include <iostream> // lines 43-43
- #include <sstream> // lines 46-46
- #include "CacheMemory.h" // lines 37-37
- #include "Exceptions.h" // lines 38-38
- #include "FFmpegWriter.h" // lines 36-36
- #include "Json.h" // lines 39-39
- #include "ReaderBase.h" // lines 34-34
The full include-list for /home/ferd/devel/libopenshot/src/ChunkWriter.h:
#include <stdint.h> // for int64_t
#include <memory> // for shared_ptr
#include <string> // for string
#include "WriterBase.h" // for WriterBase
namespace openshot { class FFmpegWriter; }
namespace openshot { class Frame; }
namespace openshot { class ReaderBase; }
---
/home/ferd/devel/libopenshot/src/ChunkWriter.cpp should add these lines:
#include <qdir.h> // for QDir
#include <qstring.h> // for operator+, QString
#include <fstream> // for ofstream, basic_ostream, stringstream, endl
#include "Exceptions.h" // for WriterClosed
#include "FFmpegWriter.h" // for FFmpegWriter
#include "Frame.h" // for Frame
#include "ReaderBase.h" // for ReaderBase
#include "Settings.h" // for openshot
/home/ferd/devel/libopenshot/src/ChunkWriter.cpp should remove these lines:
The full include-list for /home/ferd/devel/libopenshot/src/ChunkWriter.cpp:
#include "ChunkWriter.h"
#include <qdir.h> // for QDir
#include <qstring.h> // for operator+, QString
#include <fstream> // for ofstream, basic_ostream, stringstream, endl
#include "Exceptions.h" // for WriterClosed
#include "FFmpegWriter.h" // for FFmpegWriter
#include "Frame.h" // for Frame
#include "ReaderBase.h" // for ReaderBase
#include "Settings.h" // for openshot
---
/home/ferd/devel/libopenshot/src/effects/../ChunkReader.h should add these lines:
#include <stddef.h> // for NULL
/home/ferd/devel/libopenshot/src/effects/../ChunkReader.h should remove these lines:
- #include <memory> // lines 36-36
- #include <string> // lines 35-35
- #include "CacheMemory.h" // lines 40-40
- #include "Frame.h" // lines 38-38
- #include "Json.h" // lines 39-39
- #include "ReaderBase.h" // lines 34-34
The full include-list for /home/ferd/devel/libopenshot/src/effects/../ChunkReader.h:
#include <stddef.h> // for NULL
---
/home/ferd/devel/libopenshot/src/ChunkReader.cpp should add these lines:
#include <bits/exception.h> // for exception
#include <qdir.h> // for QDir
#include <qstring.h> // for operator+, QString
#include <stdint.h> // for int64_t
#include <memory> // for shared_ptr, __shared_ptr_access
#include <ostream> // for stringstream, ifstream, basic_o...
#include <string> // for string, stoll, getline, operator<<
#include "Settings.h" // for openshot
#include "effects/../ChunkReader.h" // for ChunkReader, ChunkLocation, Chu...
#include "effects/../Exceptions.h" // for InvalidJSON, InvalidFile, Chunk...
#include "effects/../FFmpegReader.h" // for FFmpegReader
#include "effects/../Fraction.h" // for Fraction
#include "effects/../Frame.h" // for Frame
#include "effects/../Json.h" // for stringToJson
#include "effects/../ReaderBase.h" // for ReaderInfo, ReaderBase
#include "json/json.h" // for Value, parseFromStream, CharRea...
/home/ferd/devel/libopenshot/src/ChunkReader.cpp should remove these lines:
- #include <QDir> // lines 34-34
- #include "FFmpegReader.h" // lines 32-32
The full include-list for /home/ferd/devel/libopenshot/src/ChunkReader.cpp:
#include "ChunkReader.h"
#include <bits/exception.h> // for exception
#include <qdir.h> // for QDir
#include <qstring.h> // for operator+, QString
#include <stdint.h> // for int64_t
#include <memory> // for shared_ptr, __shared_ptr_access
#include <ostream> // for stringstream, ifstream, basic_o...
#include <string> // for string, stoll, getline, operator<<
#include "Settings.h" // for openshot
#include "effects/../ChunkReader.h" // for ChunkReader, ChunkLocation, Chu...
#include "effects/../Exceptions.h" // for InvalidJSON, InvalidFile, Chunk...
#include "effects/../FFmpegReader.h" // for FFmpegReader
#include "effects/../Fraction.h" // for Fraction
#include "effects/../Frame.h" // for Frame
#include "effects/../Json.h" // for stringToJson
#include "effects/../ReaderBase.h" // for ReaderInfo, ReaderBase
#include "json/json.h" // for Value, parseFromStream, CharRea...
---
/home/ferd/devel/libopenshot/src/Coordinate.h should add these lines:
#include <string> // for string
#include "json/json.h" // for Value
/home/ferd/devel/libopenshot/src/Coordinate.h should remove these lines:
- #include <iostream> // lines 34-34
- #include "Exceptions.h" // lines 35-35
- #include "Fraction.h" // lines 36-36
- #include "Json.h" // lines 37-37
The full include-list for /home/ferd/devel/libopenshot/src/Coordinate.h:
#include <string> // for string
#include "json/json.h" // for Value
---
/home/ferd/devel/libopenshot/src/Coordinate.cpp should add these lines:
#include <bits/exception.h> // for exception
#include <iostream> // for std
#include "Exceptions.h" // for InvalidJSON, openshot
#include "Json.h" // for stringToJson
/home/ferd/devel/libopenshot/src/Coordinate.cpp should remove these lines:
The full include-list for /home/ferd/devel/libopenshot/src/Coordinate.cpp:
#include "Coordinate.h"
#include <bits/exception.h> // for exception
#include <iostream> // for std
#include "Exceptions.h" // for InvalidJSON, openshot
#include "Json.h" // for stringToJson
---
/home/ferd/devel/libopenshot/src/ClipBase.h should add these lines:
#include <stddef.h> // for NULL
#include <stdint.h> // for int64_t
#include <string> // for string
#include "json/json.h" // for Value
namespace openshot { class Frame; }
namespace openshot { class Keyframe; }
namespace openshot { class TimelineBase; }
/home/ferd/devel/libopenshot/src/ClipBase.h should remove these lines:
- #include <sstream> // lines 35-35
- #include "Exceptions.h" // lines 37-37
- #include "Frame.h" // lines 38-38
- #include "Json.h" // lines 41-41
- #include "KeyFrame.h" // lines 40-40
- #include "Point.h" // lines 39-39
- #include "TimelineBase.h" // lines 42-42
The full include-list for /home/ferd/devel/libopenshot/src/ClipBase.h:
#include <stddef.h> // for NULL
#include <stdint.h> // for int64_t
#include <memory> // for shared_ptr
#include <string> // for string
#include "CacheMemory.h" // for CacheMemory
#include "json/json.h" // for Value
namespace openshot { class Frame; }
namespace openshot { class Keyframe; }
namespace openshot { class TimelineBase; }
---
/home/ferd/devel/libopenshot/src/ClipBase.cpp should add these lines:
#include "Coordinate.h" // for Coordinate
#include "KeyFrame.h" // for Keyframe
#include "Point.h" // for Point, CONSTANT
#include "Settings.h" // for openshot
/home/ferd/devel/libopenshot/src/ClipBase.cpp should remove these lines:
The full include-list for /home/ferd/devel/libopenshot/src/ClipBase.cpp:
#include "ClipBase.h"
#include "Coordinate.h" // for Coordinate
#include "KeyFrame.h" // for Keyframe
#include "Point.h" // for Point, CONSTANT
#include "Settings.h" // for openshot
---
/home/ferd/devel/libopenshot/src/CrashHandler.h should add these lines:
#include <bits/types/siginfo_t.h> // for siginfo_t
/home/ferd/devel/libopenshot/src/CrashHandler.h should remove these lines:
- #include <cxxabi.h> // lines 45-45
- #include <errno.h> // lines 44-44
- #include <execinfo.h> // lines 42-42
- #include <signal.h> // lines 36-36
- #include <cstdlib> // lines 34-34
- #include "ZmqLogger.h" // lines 46-46
The full include-list for /home/ferd/devel/libopenshot/src/CrashHandler.h:
#include <bits/types/siginfo_t.h> // for siginfo_t
#include <stdio.h> // for FILE
---
/home/ferd/devel/libopenshot/src/CrashHandler.cpp should add these lines:
#include <cxxabi.h> // for __cxa_demangle
#include <execinfo.h> // for backtrace, backtrace_symbols
#include <signal.h> // for sigaction, sigemptyset, SIGABRT, SIGBUS, SIGFPE
#include <cstdlib> // for NULL, exit, free
#include <iomanip> // for operator<<, setw, left
#include <ostream> // for operator<<, basic_ostream, char_traits, endl
#include "Settings.h" // for openshot
#include "ZmqLogger.h" // for ZmqLogger
/home/ferd/devel/libopenshot/src/CrashHandler.cpp should remove these lines:
The full include-list for /home/ferd/devel/libopenshot/src/CrashHandler.cpp:
#include "CrashHandler.h"
#include <cxxabi.h> // for __cxa_demangle
#include <execinfo.h> // for backtrace, backtrace_symbols
#include <signal.h> // for sigaction, sigemptyset, SIGABRT, SIGBUS, SIGFPE
#include <cstdlib> // for NULL, exit, free
#include <iomanip> // for operator<<, setw, left
#include <ostream> // for operator<<, basic_ostream, char_traits, endl
#include "Settings.h" // for openshot
#include "ZmqLogger.h" // for ZmqLogger
---
/home/ferd/devel/libopenshot/src/Clip.h should add these lines:
#include <juce_audio_basics/buffers/juce_AudioSampleBuffer.h> // for AudioS...
#include <juce_core/threads/juce_CriticalSection.h> // for Critic...
#include <stdint.h> // for int64_t
#include <list> // for list
#include "CacheMemory.h" // for CacheM...
#include "effects/../Color.h" // for Color
#include "effects/../EffectBase.h" // for Effect...
#include "json/json.h" // for Value
namespace openshot { class AudioResampler; }
namespace openshot { class Frame; }
/home/ferd/devel/libopenshot/src/Clip.h should remove these lines:
- #include <QtGui/QImage> // lines 36-36
- #include "AudioResampler.h" // lines 37-37
- #include "Color.h" // lines 39-39
- #include "EffectBase.h" // lines 41-41
- #include "EffectInfo.h" // lines 43-43
- #include "Effects.h" // lines 42-42
- #include "Fraction.h" // lines 44-44
- #include "Frame.h" // lines 45-45
- #include "JuceHeader.h" // lines 48-48
The full include-list for /home/ferd/devel/libopenshot/src/Clip.h:
#include <juce_audio_basics/buffers/juce_AudioSampleBuffer.h> // for AudioS...
#include <juce_core/threads/juce_CriticalSection.h> // for Critic...
#include <stdint.h> // for int64_t
#include <list> // for list
#include <memory> // for shared...
#include <string> // for string
#include "CacheMemory.h" // for CacheM...
#include "ClipBase.h" // for ClipBase
#include "Enums.h" // for Anchor...
#include "KeyFrame.h" // for Keyframe
#include "ReaderBase.h" // for Reader...
#include "effects/../Color.h" // for Color
#include "effects/../EffectBase.h" // for Effect...
#include "json/json.h" // for Value
namespace openshot { class AudioResampler; }
namespace openshot { class Frame; }
---
/home/ferd/devel/libopenshot/src/Clip.cpp should add these lines:
#include <QtCore/qglobal.h> // for QFlags
#include <bits/exception.h> // for exception
#include <ctype.h> // for tolower
#include <juce_core/threads/juce_ScopedLock.h> // for GenericScopedLock
#include <math.h> // for fabs, round, abs
#include <qcolor.h> // for QColor
#include <qimage.h> // for QImage
#include <qnamespace.h> // for KeepAspectRatio, Igno...
#include <qpainter.h> // for QPainter, operator|
#include <qsize.h> // for QSize
#include <qstring.h> // for QString
#include <qtransform.h> // for QTransform
#include <stdlib.h> // for NULL, abs, strtof
#include <algorithm> // for transform
#include <map> // for map
#include <ostream> // for operator<<, stringstream
#include "AudioBufferSource.h" // for openshot
#include "AudioResampler.h" // for AudioResampler
#include "EffectInfo.h" // for EffectInfo
#include "OpenMPUtilities.h" // for OPEN_MP_NUM_PROCESSORS
#include "TimelineBase.h" // for TimelineBase
#include "ZmqLogger.h" // for ZmqLogger
#include "effects/../Exceptions.h" // for ReaderClosed, Invalid...
#include "effects/../Fraction.h" // for Fraction
#include "effects/../Frame.h" // for Frame
#include "effects/../Json.h" // for stringToJson
#include "effects/../KeyFrame.h" // for Keyframe
/home/ferd/devel/libopenshot/src/Clip.cpp should remove these lines:
- #include "FrameMapper.h" // lines 33-33
The full include-list for /home/ferd/devel/libopenshot/src/Clip.cpp:
#include "Clip.h"
#include <QtCore/qglobal.h> // for QFlags
#include <bits/exception.h> // for exception
#include <ctype.h> // for tolower
#include <juce_core/threads/juce_ScopedLock.h> // for GenericScopedLock
#include <math.h> // for fabs, round, abs
#include <qcolor.h> // for QColor
#include <qimage.h> // for QImage
#include <qnamespace.h> // for KeepAspectRatio, Igno...
#include <qpainter.h> // for QPainter, operator|
#include <qsize.h> // for QSize
#include <qstring.h> // for QString
#include <qtransform.h> // for QTransform
#include <stdlib.h> // for NULL, abs, strtof
#include <algorithm> // for transform
#include <map> // for map
#include <ostream> // for operator<<, stringstream
#include "AudioBufferSource.h" // for openshot
#include "AudioResampler.h" // for AudioResampler
#include "ChunkReader.h" // for ChunkReader, ChunkVer...
#include "DummyReader.h" // for DummyReader
#include "EffectInfo.h" // for EffectInfo
#include "FFmpegReader.h" // for FFmpegReader
#include "OpenMPUtilities.h" // for OPEN_MP_NUM_PROCESSORS
#include "QtImageReader.h" // for QtImageReader
#include "Timeline.h" // for Timeline
#include "TimelineBase.h" // for TimelineBase
#include "ZmqLogger.h" // for ZmqLogger
#include "effects/../Exceptions.h" // for ReaderClosed, Invalid...
#include "effects/../Fraction.h" // for Fraction
#include "effects/../Frame.h" // for Frame
#include "effects/../Json.h" // for stringToJson
#include "effects/../KeyFrame.h" // for Keyframe
---
/home/ferd/devel/libopenshot/src/RendererBase.h should add these lines:
#include <stdint.h> // for int64_t
class QImage;
/home/ferd/devel/libopenshot/src/RendererBase.h should remove these lines:
- #include <cstdlib> // lines 35-35
- #include "Frame.h" // lines 34-34
The full include-list for /home/ferd/devel/libopenshot/src/RendererBase.h:
#include <stdint.h> // for int64_t
#include <memory> // for shared_ptr
class QImage;
namespace openshot { class Frame; } // lines 40-40
---
/home/ferd/devel/libopenshot/src/RendererBase.cpp should add these lines:
#include "Frame.h" // for Frame
#include "Settings.h" // for openshot
/home/ferd/devel/libopenshot/src/RendererBase.cpp should remove these lines:
The full include-list for /home/ferd/devel/libopenshot/src/RendererBase.cpp:
#include "RendererBase.h"
#include "Frame.h" // for Frame
#include "Settings.h" // for openshot
---
/home/ferd/devel/libopenshot/src/DummyReader.h should add these lines:
#include <stdint.h> // for int64_t
#include <string> // for string
#include "json/json.h" // for Value
namespace openshot { class CacheBase; }
namespace openshot { class Fraction; }
namespace openshot { class Frame; }
/home/ferd/devel/libopenshot/src/DummyReader.h should remove these lines:
- #include <omp.h> // lines 39-39
- #include <stdio.h> // lines 40-40
- #include <cmath> // lines 36-36
- #include <iostream> // lines 38-38
- #include "Exceptions.h" // lines 43-43
- #include "Fraction.h" // lines 44-44
The full include-list for /home/ferd/devel/libopenshot/src/DummyReader.h:
#include <stdint.h> // for int64_t
#include <ctime> // for NULL
#include <memory> // for shared_ptr
#include <string> // for string
#include "CacheMemory.h" // for CacheMemory
#include "ReaderBase.h" // for ReaderBase
#include "json/json.h" // for Value
namespace openshot { class CacheBase; }
namespace openshot { class Fraction; }
namespace openshot { class Frame; }
---
/home/ferd/devel/libopenshot/src/DummyReader.cpp should add these lines:
#include <bits/exception.h> // for exception
#include <juce_core/threads/juce_CriticalSection.h> // for CriticalSection
#include <juce_core/threads/juce_ScopedLock.h> // for GenericScopedLock
#include "CacheBase.h" // for CacheBase
#include "Exceptions.h" // for InvalidFile, Inv...
#include "Fraction.h" // for Fraction
#include "Frame.h" // for Frame
#include "Json.h" // for stringToJson
#include "Settings.h" // for openshot
/home/ferd/devel/libopenshot/src/DummyReader.cpp should remove these lines:
The full include-list for /home/ferd/devel/libopenshot/src/DummyReader.cpp:
#include "DummyReader.h"
#include <bits/exception.h> // for exception
#include <juce_core/threads/juce_CriticalSection.h> // for CriticalSection
#include <juce_core/threads/juce_ScopedLock.h> // for GenericScopedLock
#include "CacheBase.h" // for CacheBase
#include "Exceptions.h" // for InvalidFile, Inv...
#include "Fraction.h" // for Fraction
#include "Frame.h" // for Frame
#include "Json.h" // for stringToJson
#include "Settings.h" // for openshot
---
/home/ferd/devel/libopenshot/src/ReaderBase.h should add these lines:
#include <juce_core/threads/juce_CriticalSection.h> // for CriticalSection
#include <stdint.h> // for int64_t
#include <map> // for map
#include <string> // for string
#include "json/json.h" // for Value
namespace openshot { class CacheBase; }
namespace openshot { class ClipBase; }
namespace openshot { class Frame; }
/home/ferd/devel/libopenshot/src/ReaderBase.h should remove these lines:
- #include <QGraphicsItem> // lines 47-47
- #include <QGraphicsPixmapItem> // lines 49-49
- #include <QGraphicsScene> // lines 48-48
- #include <QPixmap> // lines 50-50
- #include <QString> // lines 46-46
- #include <cstdlib> // lines 37-37
- #include <iomanip> // lines 35-35
- #include <iostream> // lines 34-34
- #include <sstream> // lines 38-38
- #include "CacheMemory.h" // lines 39-39
- #include "ClipBase.h" // lines 41-41
- #include "Frame.h" // lines 43-43
- #include "Json.h" // lines 44-44
- #include "ZmqLogger.h" // lines 45-45
The full include-list for /home/ferd/devel/libopenshot/src/ReaderBase.h:
#include <juce_core/threads/juce_CriticalSection.h> // for CriticalSection
#include <stdint.h> // for int64_t
#include <map> // for map
#include <memory> // for shared_ptr
#include <string> // for string
#include "ChannelLayouts.h" // for ChannelLayout
#include "Fraction.h" // for Fraction
#include "json/json.h" // for Value
namespace openshot { class CacheBase; }
namespace openshot { class ClipBase; }
namespace openshot { class Frame; }
---
/home/ferd/devel/libopenshot/src/ReaderBase.cpp should add these lines:
#include <cstdlib> // for NULL
#include <iomanip> // for operator<<, setprecision
#include <iostream> // for operator<<, endl, basic_ostream, basic_ostream...
#include <utility> // for pair
#include "Settings.h" // for openshot
namespace openshot { class ClipBase; }
/home/ferd/devel/libopenshot/src/ReaderBase.cpp should remove these lines:
The full include-list for /home/ferd/devel/libopenshot/src/ReaderBase.cpp:
#include "ReaderBase.h"
#include <cstdlib> // for NULL
#include <iomanip> // for operator<<, setprecision
#include <iostream> // for operator<<, endl, basic_ostream, basic_ostream...
#include <utility> // for pair
#include "Settings.h" // for openshot
namespace openshot { class ClipBase; }
---
/home/ferd/devel/libopenshot/src/EffectBase.h should add these lines:
#include <string> // for string
#include "json/json.h" // for Value
/home/ferd/devel/libopenshot/src/EffectBase.h should remove these lines:
- #include <iomanip> // lines 35-35
- #include <iostream> // lines 34-34
- #include <memory> // lines 36-36
- #include "Frame.h" // lines 39-39
- #include "Json.h" // lines 38-38
The full include-list for /home/ferd/devel/libopenshot/src/EffectBase.h:
#include <string> // for string
#include "ClipBase.h" // for ClipBase
#include "json/json.h" // for Value
---
/home/ferd/devel/libopenshot/src/EffectBase.cpp should add these lines:
#include <bits/exception.h> // for exception
#include <stddef.h> // for NULL
#include <iomanip> // for operator<<, setprecision
#include <iostream> // for operator<<, endl, basic_ostream, cout
#include "Exceptions.h" // for InvalidJSON
#include "Json.h" // for stringToJson
#include "Settings.h" // for openshot
/home/ferd/devel/libopenshot/src/EffectBase.cpp should remove these lines:
The full include-list for /home/ferd/devel/libopenshot/src/EffectBase.cpp:
#include "EffectBase.h"
#include <bits/exception.h> // for exception
#include <stddef.h> // for NULL
#include <iomanip> // for operator<<, setprecision
#include <iostream> // for operator<<, endl, basic_ostream, cout
#include "Exceptions.h" // for InvalidJSON
#include "Json.h" // for stringToJson
#include "Settings.h" // for openshot
---
/home/ferd/devel/libopenshot/src/WriterBase.h should add these lines:
#include <stdint.h> // for int64_t
#include <map> // for map
#include <memory> // for shared_ptr
#include <string> // for string
#include "json/json.h" // for Value
namespace openshot { class Frame; }
namespace openshot { class ReaderBase; }
/home/ferd/devel/libopenshot/src/WriterBase.h should remove these lines:
- #include <iomanip> // lines 35-35
- #include <iostream> // lines 34-34
- #include "Frame.h" // lines 38-38
- #include "ReaderBase.h" // lines 39-39
- #include "ZmqLogger.h" // lines 40-40
The full include-list for /home/ferd/devel/libopenshot/src/WriterBase.h:
#include <stdint.h> // for int64_t
#include <map> // for map
#include <memory> // for shared_ptr
#include <string> // for string
#include "ChannelLayouts.h" // for ChannelLayout
#include "Fraction.h" // for Fraction
#include "json/json.h" // for Value
namespace openshot { class Frame; }
namespace openshot { class ReaderBase; }
---
/home/ferd/devel/libopenshot/src/WriterBase.cpp should add these lines:
#include <bits/exception.h> // for exception
#include <iomanip> // for operator<<, setprecision
#include <iostream> // for operator<<, endl, basic_ostream, basic_o...
#include "Exceptions.h" // for InvalidJSON
#include "Json.h" // for stringToJson
#include "ReaderBase.h" // for ReaderBase, ReaderInfo
/home/ferd/devel/libopenshot/src/WriterBase.cpp should remove these lines:
The full include-list for /home/ferd/devel/libopenshot/src/WriterBase.cpp:
#include "WriterBase.h"
#include <bits/exception.h> // for exception
#include <iomanip> // for operator<<, setprecision
#include <iostream> // for operator<<, endl, basic_ostream, basic_o...
#include "Exceptions.h" // for InvalidJSON
#include "Json.h" // for stringToJson
#include "ReaderBase.h" // for ReaderBase, ReaderInfo
---
/home/ferd/devel/libopenshot/src/EffectInfo.h should add these lines:
#include <string> // for string
#include "json/json.h" // for Value
namespace openshot { class EffectBase; }
/home/ferd/devel/libopenshot/src/EffectInfo.h should remove these lines:
- #include "Effects.h" // lines 34-34
The full include-list for /home/ferd/devel/libopenshot/src/EffectInfo.h:
#include <string> // for string
#include "json/json.h" // for Value
namespace openshot { class EffectBase; }
---
/home/ferd/devel/libopenshot/src/EffectInfo.cpp should add these lines:
#include <stddef.h> // for NULL
#include "Settings.h" // for openshot
#include "effects/Bars.h" // for Bars
#include "effects/Blur.h" // for Blur
#include "effects/Brightness.h" // for Brightness
#include "effects/Caption.h" // for Caption
#include "effects/ChromaKey.h" // for ChromaKey
#include "effects/ColorShift.h" // for ColorShift
#include "effects/Crop.h" // for Crop
#include "effects/Deinterlace.h" // for Deinterlace
#include "effects/Hue.h" // for Hue
#include "effects/Mask.h" // for Mask
#include "effects/Negate.h" // for Negate
#include "effects/Pixelate.h" // for Pixelate
#include "effects/Saturation.h" // for Saturation
#include "effects/Shift.h" // for Shift
#include "effects/Wave.h" // for Wave
namespace openshot { class EffectBase; }
/home/ferd/devel/libopenshot/src/EffectInfo.cpp should remove these lines:
The full include-list for /home/ferd/devel/libopenshot/src/EffectInfo.cpp:
#include "EffectInfo.h"
#include <stddef.h> // for NULL
#include "Settings.h" // for openshot
#include "effects/Bars.h" // for Bars
#include "effects/Blur.h" // for Blur
#include "effects/Brightness.h" // for Brightness
#include "effects/Caption.h" // for Caption
#include "effects/ChromaKey.h" // for ChromaKey
#include "effects/ColorShift.h" // for ColorShift
#include "effects/Crop.h" // for Crop
#include "effects/Deinterlace.h" // for Deinterlace
#include "effects/Hue.h" // for Hue
#include "effects/Mask.h" // for Mask
#include "effects/Negate.h" // for Negate
#include "effects/Pixelate.h" // for Pixelate
#include "effects/Saturation.h" // for Saturation
#include "effects/Shift.h" // for Shift
#include "effects/Wave.h" // for Wave
namespace openshot { class EffectBase; }
---
/home/ferd/devel/libopenshot/src/Fraction.h should add these lines:
/home/ferd/devel/libopenshot/src/Fraction.h should remove these lines:
- #include <cmath> // lines 34-34
The full include-list for /home/ferd/devel/libopenshot/src/Fraction.h:
---
/home/ferd/devel/libopenshot/src/Fraction.cpp should add these lines:
#include <cmath> // for round
/home/ferd/devel/libopenshot/src/Fraction.cpp should remove these lines:
The full include-list for /home/ferd/devel/libopenshot/src/Fraction.cpp:
#include "Fraction.h"
#include <cmath> // for round
---
/home/ferd/devel/libopenshot/src/FFmpegReader.cpp:42:9: warning: You are compiling with experimental hardware decode [-W#pragma-messages]
#pragma message "You are compiling with experimental hardware decode"
^
/home/ferd/devel/libopenshot/src/effects/../FFmpegReader.h should add these lines:
/home/ferd/devel/libopenshot/src/effects/../FFmpegReader.h should remove these lines:
- #include <stdio.h> // lines 45-45
- #include <cmath> // lines 42-42
- #include <ctime> // lines 43-43
- #include <iostream> // lines 44-44
- #include <memory> // lines 46-46
- #include "CacheMemory.h" // lines 47-47
- #include "Clip.h" // lines 48-48
- #include "Exceptions.h" // lines 49-49
- #include "FFmpegUtilities.h" // lines 40-40
- #include "OpenMPUtilities.h" // lines 50-50
- #include "ReaderBase.h" // lines 37-37
- #include "Settings.h" // lines 51-51
The full include-list for /home/ferd/devel/libopenshot/src/effects/../FFmpegReader.h:
---
/home/ferd/devel/libopenshot/src/FFmpegReader.cpp should add these lines: