-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathChangeLog
1206 lines (819 loc) · 30 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
2012-05-21 Michael Riepe <[email protected]>
* src/main.cpp:
Fix compilation with gcc 4.7.
2011-04-29 Michael Riepe <[email protected]>
* src/playaudio.cpp:
Fix segfault with libao >= 1.0.
2011-04-25 Michael Riepe <[email protected]>
* src/mpgfile.cpp:
* src/tsfile.h:
* src/tsfile.cpp:
Handle TS packet sizes other than 188.
* VERSION:
Bump up to 0.6.2-alpha.
2011-04-24 David Timms <[email protected]> (mr)
* src/progresswindow.cpp:
Dual-function cancel/close button.
2011-04-24 Michael Riepe <[email protected]>
* makefile.in:
* src/Makefile.in:
Add datarootdir variable.
2011-04-22 Michael Riepe <[email protected]>
* src/dvbcut.cpp:
Remove `const'.
2011-04-22 Michael Riepe <[email protected]>
* src/settings.cpp:
Add .m2t extension.
2010-05-26 Michael Riepe <[email protected]>
* src/main.cpp:
* src/mpgfile.h:
Replace `index::index' with `class index' to make
gcc 4.5 happy.
2010-03-06 Michael Riepe <[email protected]>
* DISTFILES:
Add dvbcut.ico.
* dvbcut.ico:
Converted icon for Windows.
2010-02-25 Michael Riepe <[email protected]>
* DISTFILES:
Add dvbcut.svg.
* dvbcut.svg:
Icon contributed by Franmcesco Fumanti.
* makefile.in:
Install icon.
2010-02-24 Michael Riepe <[email protected]>
* DISTFILES:
Add new files.
* dvbcut.desktop.in:
Add desktop file template.
* dvbcut.xml:
Add mime type declaration for application/x-dvbcut.
* makefile.in:
Install new files.
* configure.in:
Create dvbcut.desktop from dvbcut.desktop.in.
2009-06-28 Michael Riepe <[email protected]>
* makefile.in:
Fix stamp-dist dependencies.
Fix non-POSIX sort command.
Add bindist target.
2009-06-27 Michael Riepe <[email protected]>
* src/dvbcut.cpp:
* src/dvbcut.h:
* src/dvbcutbase.ui:
Add help dialog and about box.
* src/dvbcut_en.html:
Initial (rudimentary) help file.
* DISTFILES:
Add dvbcut_en.html.
* src/Makefile.in:
Install dvbcut_en.html.
2009-06-27 Michael Riepe <[email protected]>
* src/stream.h:
Make non-interlaced video the default.
2009-06-27 Michael Riepe <[email protected]>
* makefile.in:
Allow parallel (make -j<n>) install.
2009-06-26 Michael Riepe <[email protected]>
* import/stdlib.h:
Use #include_next <stdlib.h> instead of a fixed path.
2009-06-23 Michael Riepe <[email protected]>
* src/buffer.cpp:
* src/mpegmuxer.cpp:
Fix gcc 4.4 build.
2009-06-19 Dominik Kopp <[email protected]> (mr)
* contrib/AR_to_169:
* contrib/AR_to_43:
Add missing quotes.
2009-06-09 Michael Riepe <[email protected]>
* contrib:
New directory
* contrib/AR_to_169:
* contrib/AR_to_43:
New scripts to force an aspect ratio of 16:9 or
4:3. Contributed by Dominik Kopp.
* DISTFILES:
Add new files to distribution list.
2009-02-11 Michael Riepe <[email protected]>
* src/Makefile.in:
Generate all sources before calling setversion.sh.
2009-01-28 Michael Riepe <[email protected]>
* configure.in:
Also link with -lm when looking for liba52.
2009-01-24 Michael Riepe <[email protected]>
* VERSION:
Bump up to 0.6.0.
* README:
Edit for release.
* INSTALL:
Remove references to scons.
* Makefile:
Tell people to run configure instead of scons.
* SConstruct:
* SConscript.ffmpeg:
* src/SConscript:
Remove.
* DISTFILES:
Remove SConstruct, SConscript.ffmpeg and src/SConscript.
* configure.in:
Pass configure args to Makefiles.
* makefile.in:
Generate new version.h for tarball.
Pass configure args to "make check-dist".
2009-01-17 Michael Riepe <[email protected]>
* src/Makefile.in:
Delegate version.h creation to toplevel makefile.
* makefile.in:
Add target to create src/version.h.
* DISTFILES:
Add missing files.
2009-01-12 Michael Riepe <[email protected]>
* DISTFILES:
New file.
* makefile.in:
Add distfiles, dist and check-dist targets.
* src/Makefile.in:
Add distfiles target.
2009-01-12 Michael Riepe <[email protected]>
* INSTALL:
* makefile.in:
Add and document `dep' target.
2009-01-12 Michael Riepe <[email protected]>
* src/stream.h:
Fix "impossible bitrate constraints" error
from external ffmpeg.
2009-01-11 Michael Riepe <[email protected]>
* src/dvbcut.cpp:
* src/dvbcut.h:
* src/dvbcutbase.ui:
Add Zoom in/out function.
2009-01-10 Ralph Glasstetter <[email protected]> (mr)
* src/dvbcut.cpp:
Handle left/right key events.
Make mouse wheel work in video window.
2009-01-08 Ralph Glasstetter <[email protected]> (mr)
* src/settings.cpp:
Fixed bug with output pipe directory/file names
containing spaces (added quotes).
* src/dvbcutbase.ui:
* src/dvbcut.cpp:
* src/dvbcut.h:
* src/avframe.cpp:
* src/avframe.h:
* src/imageprovider.cpp:
* src/imageprovider.h:
* src/differenceimageprovider.cpp:
* src/differenceimageprovider.h:
* src/settings.cpp:
* src/settings.h:
viewscalefactor can now be any positive float,
and implemented "Custem size" viewing scale.
2009-01-07 Michael Riepe <[email protected]>
* configure.in:
Add --with-qt3-include and --with-qt3-lib options.
* makefile.in:
* src/Makefile.in:
Use $(DESTDIR).
2009-01-07 Ralph Glasstetter <[email protected]> (mr)
* INSTALL:
Updated dependencies and build instructions.
2008-10-31 Wolfram Gloger <[email protected]> (mr)
* src/lavfmuxer.cpp:
Use avcodec_decode_audio2 with newer ffmpeg.
* src/avframe.cpp:
Replace img_copy with av_picture_copy for newer ffmpeg.
* configure.in:
Add -I.../include/qt3 to CPPFLAGS.
2008-10-26 Michael Riepe <[email protected]>
* src/index.cpp:
Fix writing of new index format.
2008-10-19 Michael Riepe <[email protected]>
* src/buffer.cpp:
Fix Windows build.
2008-10-19 Michael Riepe <[email protected]>
* src/buffer.cpp:
Fix Ubuntu compilation error.
2008-10-17 Michael Riepe <[email protected]>
* src/index.cpp:
Disable generation of new index format for now.
2008-10-10 Ralph Glasstetter <[email protected]> (mr)
* src/dvbcutbase.ui:
* src/dvbcut.cpp:
* src/index.cpp:
* src/index.h:
* src/mpgfile.h:
Show picture related infos (slightly changed index format!)
2008-10-10 Michael Riepe <[email protected]>
* src/mpegmuxer.h:
* src/mpegmuxer.cpp:
Return false if writing fails.
2008-06-14 Michael Riepe <[email protected]>
* configure.in:
Improve ffmpeg/libswscale handling.
2008-06-14 Michael Riepe <[email protected]>
* configure.in:
* install-sh:
* makefile.in:
* mkinstalldirs:
* src/Makefile.in:
New files.
2008-05-18 Michael Riepe <[email protected]>
* src/main.cpp:
Use size_t instead of unsigned int.
2008-03-31 Michael Riepe <[email protected]>
* src/Makefile.w32:
Fix Windows build (patch by Ralph Glasstetter).
2008-03-24 Michael Riepe <[email protected]>
* SConstruct:
* src/avframe.h:
* src/lavfmuxer.cpp:
* src/lavfmuxer.h:
* src/main.cpp:
* src/stream.h:
* src/streamdata.h:
Yet another ffmpeg interface change.
2008-03-23 Michael Riepe <[email protected]>
* src/psfile.cpp:
Add missing #include <cassert> (thanks, Wolfram).
2008-03-23 Michael Riepe <[email protected]>
* src/psfile.cpp:
Mark audio streams in first pass, renumber in second.
2008-03-21 Michael Riepe <[email protected]>
* src/Makefile.w32:
* src/dvbcut.cpp:
Windows compile fixes.
2008-03-17 Michael Riepe <[email protected]>
* src/tsfile.cpp:
Accept 0x80 as legacy video descriptor tag.
2008-03-12 Michael Riepe <[email protected]>
* src/dvbcut.cpp:
Add hack for filenames with colons in them.
2008-03-12 Michael Riepe <[email protected]>
* SConstruct:
Always define __STDC_CONSTANT_MACROS and __STDC_LIMIT_MACROS.
* src/buffer.cpp:
Remove obsolete definition of __STDC_LIMIT_MACROS.
* src/mpgfile.cpp:
* src/psfile.cpp:
* src/tsfile.cpp:
Avoid stupid compiler warnings.
2008-02-17 Ralph Glasstetter <[email protected]> (mr)
* src/dvbcut.cpp:
Always add a trailing slash to directory names.
2008-02-15 Michael Riepe <[email protected]>
* src/dvbcut.cpp:
* src/dvbcut.h:
* src/main.cpp:
Add "-voracious" option for people who have several
gigabytes of cache and want dvbcut to use all of it.
2008-02-15 Michael Riepe <[email protected]>
* src/settings.cpp:
Added "versioned" config file and format adaption.
2008-02-10 Ralph Glasstetter <[email protected]> (mr)
* src/dvbcut.cpp:
* src/settings.cpp:
* src/settings.h:
Fixed bug with 'lastdir' & toplevel directories
under Windows and implemented possibility to use
a fixed 'lastdir'.
Added *.trp to recognized files.
2008-02-04 Michael Riepe <[email protected]>
* SConstruct:
Install manpages to $PREFIX/share/man.
* src/dvbcut.cpp:
* src/tsfile.cpp:
#include <algorithm>.
2008-01-16 Michael Riepe <[email protected]>
* src/psfile.cpp:
Speed up PS probing.
2008-01-06 Ralph Glasstetter <[email protected]> (mr)
* src/dvbcutbase.ui:
* src/dvbcut.cpp:
* src/dvbcut.h:
* src/settings.cpp:
* src/settings.h:
Automated setting of equidistant chapter markers.
Fixed bug concerning positioning via output frames.
2007-12-12 Ralph Glasstetter <[email protected]> (mr)
* src/dvbcutbase.ui:
* src/dvbcut.cpp:
* src/dvbcut.h:
* src/main.cpp:
Added 4:3 & 16:9 bookmark conversion to GUI & CLI.
Additional -cut & -automarker CLI switches.
2007-12-08 Ralph Glasstetter <[email protected]> (mr)
* src/dvbcut.cpp:
Added format option to <expfile>-tag of project files.
Fixed a chapterlist bug.
* src/settings.cpp:
Empty defaults for pipe settings.
2007-12-06 Ralph Glasstetter <[email protected]> (mr)
* src/settings.cpp:
* src/settings.h:
* src/dvbcut.cpp:
* src/dvbcut.h:
New recent files format which allows for storing
multiple input files.
* src/dvbcut.cpp:
* src/dvbcut.h:
* src/main.cpp:
Input file names can come before CLI switches.
New -format switch.
2007-12-06 Ralph Glasstetter <[email protected]> (mr)
* src/settings.cpp:
* src/settings.h:
New pipe command settings.
* src/dvbcut.cpp:
Improved pipe command.
2007-12-06 Michael Riepe <[email protected]>
* src/dvbcutbase.ui:
Use zero margin.
2007-11-28 Michael Riepe <[email protected]>
* src/lavfmuxer.cpp:
Compatibility patch for libavformat >= 52.0.0
(contributed by Alexis Ballier).
2007-11-28 Wolfram Gloger <[email protected]> (mr)
* src/dvbcut.cpp:
* src/mpegmuxer.cpp:
Allow output to a pipe.
* src/port.h:
Include <sys/wait.h> on Unix/Linux.
2007-11-26 Ralph Glasstetter <[email protected]> (mr)
* src/dvbcutbase.ui:
* src/dvbcut.cpp:
* src/dvbcut.h:
* src/settings.cpp:
* src/settings.h:
Configurable snapshot parameters and chapter snapshots.
2007-11-24 Ralph Glasstetter <[email protected]> (mr)
* src/tsfile.cpp:
* src/tsfile.h:
Import bookmarks from new Topfield TF7700HDPVR.
* src/mpgfile.cpp:
* src/mpgfile.h:
readfile() to read (small) files to memory.
* src/buffer.cpp:
* src/buffer.h:
Store filename in files structure.
2007-11-12 Michael Riepe <[email protected]>
* src/lavfmuxer.cpp:
Fix by Wolfram Gloger.
2007-11-03 Michael Riepe <[email protected]>
* src/tsfile.cpp:
Detect legacy audio stream types.
2007-10-30 Ralph Glasstetter <[email protected]> (mr)
* src/dvbcut.cpp:
* src/dvbcut.h:
New quick_picture_lookup_table (also used for export)!
2007-10-30 Ralph Glasstetter <[email protected]> (mr)
* src/dvbcut.cpp:
* src/settings.cpp:
* src/settings.h:
Automatically add missing start/stop markers at BOF/EOF,
configurable via "start_bof"/"stop_eof" in settings file.
* src/main.cpp:
Improved checking of cut list.
2007-10-29 Ralph Glasstetter <[email protected]> (mr)
* src/dvbcut.cpp:
* src/dvbcut.h:
* src/main.cpp:
* src/dvbcutbase.ui:
Allow timestamps in input fields, added -exp option.
-exp/-cut/-idx options overrule project file defaults.
Add specific "Delete"-entries to marker context menu.
Fixed bugs with quick_picture_lookuptable.
* src/pts.cpp:
* src/pts.h:
Function to convert formatted timestamps to pts_t.
2007-10-25 Michael Riepe <[email protected]>
* SConstruct:
Search for libintl and <libintl.h>.
* src/Makefile.w32:
* src/SConscript:
Add gettext.{cpp,h}.
* src/dvbcutbase.ui:
* src/exportdialogbase.ui:
* src/mplayererrorbase.ui:
* src/progresswindowbase.ui:
Make uic include "gettext.h".
* src/gettext.cpp:
* src/gettext.h:
New files providing hooks for gettext().
* src/main.cpp:
Add i18n framework.
2007-10-25 Michael Riepe <[email protected]>
* src/main.cpp:
Add missing newlines.
* src/dvbcut.cpp:
Display '*' marker for exported pictures.
2007-10-25 Michael Riepe <[email protected]>
* src/dvbcut.cpp:
* src/dvbcut.h:
* src/dvbcutbase.ui:
* src/eventlistitem.h:
* src/main.cpp:
Add bookmark conversion and the -cut option
(patches by Ralph Glasstetter).
2007-10-22 Michael Riepe <[email protected]>
* src/dvbcut.cpp:
Display a message when setting markers failed.
* src/mpgfile.h:
* src/tsfile.cpp:
* src/tsfile.h:
Let getbookmarks() return a std::vector
(patches by Ralph Glasstetter).
2007-10-22 Michael Riepe <[email protected]>
* src/dvbcut.cpp:
* src/dvbcut.h:
* src/dvbcutbase.ui:
* src/index.h:
* src/mpgfile.h:
* src/tsfile.cpp:
* src/tsfile.h:
Import bookmarks from Topfield receivers (code by Ralph Glasstetter).
2007-10-17 Michael Riepe <[email protected]>
* src/dvbcut.cpp:
Remove picture type on the right.
2007-10-17 Michael Riepe <[email protected]>
* src/dvbcut.cpp:
* src/dvbcutbase.ui:
New layout for the label/input area.
2007-10-13 Michael Riepe <[email protected]>
* src/Makefile.w32:
Build dvbcut with -g and place a stripped copy in bin.
2007-10-12 Michael Riepe <[email protected]>
* src/settings.cpp:
* src/settings.h:
Do not load settings until they are needed.
* src/dvbcut.cpp:
* src/eventlistitem.cpp:
Use new settings interface.
2007-10-11 Michael Riepe <[email protected]>
* src/dvbcutbase.ui:
Add/change accelerators.
2007-10-10 Michael Kreuzer <[email protected]> (mr)
* src/dvbcut.cpp:
* src/dvbcut.h:
* src/dvbcutbase.ui:
Add "save snapshot" function to file menu and toolbar
2007-10-08 Michael Riepe <[email protected]>
* src/dvbcut.cpp:
Use multi-line labels.
2007-10-07 Michael Riepe <[email protected]>
* src/dvbcut.cpp:
* src/dvbcut.h:
Add "suggest markers" function based on aspect ratio changes.
* src/dvbcutbase.ui:
Add "suggest markers" to edit menu.
* src/mpgfile.h:
Add aspect discontinuity finder function.
2007-10-07 Michael Riepe <[email protected]>
* src/index.cpp:
Never write the (binary) index to a terminal.
2007-10-07 Sven Over <[email protected]>
* src/dvbcut.h:
* src/dvbcut.cpp:
* src/eventlistitem.h:
Display output timecode and picture number.
* src/dvbcut.cpp:
Evaluate 'expfile' tag or attribute.
2007-10-05 Michael Riepe <[email protected]>
* src/buffer.cpp:
* src/buffer.h:
Implement "pipe mode" for reading from non-regular files.
* src/index.cpp:
* src/index.h:
Add separate function for saving to stdout.
* src/main.cpp:
Allow -generateidx to read from stdin again.
2007-09-30 Michael Riepe <[email protected]>
* src/defines.h:
Move default values to src/settings.cpp.
* src/eventlistitem.cpp:
Use label strings from the configuration file.
* src/settings.cpp:
* src/settings.h:
Add label strings to the configuration file.
2007-09-29 Michael Riepe <[email protected]>
* src/eventlistitem.cpp:
Use light gray background for STOP items.
2007-09-27 Michael Riepe <[email protected]>
* src/dvbcut.cpp:
Add delete all/others function to event list
(patch by Ralph Glasstetter).
2007-09-13 Michael Riepe <[email protected]>
* src/dvbcut.cpp:
Really fix project file encoding this time.
2007-09-07 Michael Riepe <[email protected]>
* src/dvbcut.cpp:
Always use UTF-8 encoding for project file.
Add a proper XML declaration at the beginning.
2007-09-06 Michael Riepe <[email protected]>
* src/main.cpp:
Locale patch by Michael Kreuzer.
2007-08-17 Michael Riepe <[email protected]>
* src/mpegmuxer.cpp:
Prepare for DTS audio.
* src/psfile.cpp:
Improved stream detection (including DTS and subtitle hooks).
2007-08-15 Michael Riepe <[email protected]>
* src/tsfile.cpp:
Improved SI table parser and stream detection.
2007-08-10 Michael Riepe <[email protected]>
* src/tsfile.cpp:
Also detect teletext and subtitle streams. We may
not be able to use them, but it's good to know that
they're there.
2007-08-03 Michael Riepe <[email protected]>
* src/tsfile.h:
* src/tsfile.cpp:
Add SI table parser.
2007-08-02 Michael Riepe <[email protected]>
* SConstruct:
Check for libswscale.
* src/avframe.h:
* src/avframe.cpp:
Use libswscale if present (patch by Michael Kreuzer).
* src/Makefile.w32:
Also scan Makefile.w32 for id keyword.
2007-07-30 Michael Riepe <[email protected]>
* src/Makefile.w32:
Set svn:keywords property.
2007-07-28 Michael Riepe <[email protected]>
* src/Makefile.w32:
Fix "versioned" build on Windows.
2007-07-28 Michael Riepe <[email protected]>
* SConstruct:
* src/avframe.h:
* src/lavfmuxer.cpp:
* src/lavfmuxer.h:
* src/main.cpp:
* src/mpgfile.cpp:
* src/mpgfile.h:
* src/psfile.cpp:
* src/stream.h:
* src/tsfile.cpp:
Ffmpeg interface cleanup patch by Wolfram Gloger.
2007-07-28 Michael Riepe <[email protected]>
* VERSION:
* setversion.sh:
New files.
* src/SConscript:
* src/Makefile.w32:
Generate version.h.
* src/dvbcut.cpp:
Include version string in caption.
2007-07-23 Michael Riepe <[email protected]>
* src/dvbcut.cpp:
Reset inbuffer only if there are new input files.
2007-07-11 Michael Riepe <[email protected]>
* src/Makefile.w32:
Add explicit dependencies for moc and uil files.
* numerous other files:
Add "Id" keyword.
2007-07-10 Michael Riepe <[email protected]>
* src/dvbcut.cpp:
Write to log instead of stderr.
Redirect log to stderr if there is no GUI.
* src/logoutput.cpp:
Simplify code, avoid memory allocations.
Don't prefix each line with a progress indicator.
* src/mpgfile.cpp:
Write to log instead of stderr.
* src/progresswindow.cpp:
Let print("") insert a line break.
2007-07-09 Michael Riepe <[email protected]>
* src/dvbcut.cpp:
Export all frames in batch mode if there isn't a project file
(patch by Ralph Glasstetter).
* src/main.cpp:
Allow multiple filenames in batch mode.
2007-07-07 Michael Riepe <[email protected]>
* src/Makefile.w32:
Add copyright and license text.
2007-07-06 Michael Riepe <[email protected]>
* src/Makefile.w32:
Fix generation of required files.
2007-07-06 Michael Riepe <[email protected]>
* src/buffer.cpp:
* src/buffer.h:
Use posix_fadvise in sequential mode.
* src/main.cpp:
Use sequential mode when indexing.
* src/dvbcut.cpp:
Use sequential mode when indexing or exporting.
2007-07-05 Michael Riepe <[email protected]>
* src/Makefile.w32:
Use -Wall.
Only remove ffmpeg install directories when distcleaning.
* src/buffer.cpp:
Disable mmap() on Windows.
* mingw.sh:
Use src/Makefile.w32 for everything.
2007-07-05 Michael Riepe <[email protected]>
* src/Makefile.w32:
New file.
* mingw.sh:
Set svn:executable property.
Use src/Makefile.w32.
2007-07-05 Michael Riepe <[email protected]>
Added svn:keyword property for all files except src/*.ui
(I don't want to confuse Qt designer).
2007-07-04 Michael Riepe <[email protected]>
* src/buffer.cpp:
Use _lseeki64 on Windows.
Only seek if necessary.
Try to read a buffer full of data.
* src/dvbcut.cpp:
Remember last used load directory for Open.
* src/settings.cpp:
* src/settings.h:
Add "lastdir" setting.
2007-07-03 Michael Riepe <[email protected]>
* src/buffer.cpp:
Use fstat/_fstati64 to obtain the file size. This is
required to overcome the 2 GB limit on 32-bit systems
(Windows in particular).
* src/defines.h:
Better defaults for multi-file mode.
2007-07-02 Michael Riepe <[email protected]>
* src/buffer.cpp:
* src/buffer.h:
* src/dvbcut.cpp:
"play multiple files" patch by Ralph Glasstetter.
2007-06-30 Michael Riepe <[email protected]>
* src/buffer.cpp (class inbuffer):
* src/buffer.h (class inbuffer):
Support multiple input files.
* src/dvbcut.cpp:
* src/dvbcut.h:
Open multiple input files.
Read & write new project file format.
Factor out pathname canonicalization.
* src/main.cpp:
Open multiple input files.
* src/mpgfile.cpp:
Use number of frames for bitrate estimation.
2007-06-29 Michael Riepe <[email protected]>
* src/buffer.cpp (class inbuffer):
* src/buffer.h (class inbuffer):
Let open() return bool.
Remove copy constructor for inbuffer.
Add reset() member for inbuffer reuse.
* src/dvbcut.h:
* src/dvbcut.cpp:
Add reusable inbuffer member to class dvbcut.
Pass inbuffer to mpgfile::open().
* src/main.cpp:
Centralize option handling.
Pass inbuffer to mpgfile::open().
* src/mpgfile.h:
* src/mpgfile.cpp:
Create mpgfile from inbuffer, not from filename.
Use a reference to a single inbuffer.
2007-06-27 Michael Riepe <[email protected]>
* src/mpgfile.cpp:
* src/mpgfile.h:
* src/psfile.cpp:
* src/psfile.h:
* src/tsfile.cpp:
* src/tsfile.h:
Do not pass a filename to class mpgfile and its derivatives.
Once we support multi-file sources, a filename makes no sense
any longer. We should instead pass the entire group of files
via a multi-file source class (e.g. a modified inbuffer).
2007-06-19 Michael Riepe <[email protected]>
* src/dvbcut.cpp: suggest a name for the project file.
2007-06-19 Michael Riepe <[email protected]>
* src/dvbcut.cpp: show filenames in caption.
2007-06-17 Michael Riepe <[email protected]>
* src/defines.h: include *.rec in DEFAULT_LOADFILTER.
2007-06-17 Michael Riepe <[email protected]>
* src/dvbcutbase.ui: add accelerators for st(A)rt, e(N)d,
(C)hapter and (B)ookmark.
* src/defines.h: include *.vdr and *.tts in DEFAULT_LOADFILTER.
2007-06-12 Michael Riepe <[email protected]>