-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathChangeLog
2051 lines (1538 loc) · 66.8 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
2015-10-20 Moritz Bunkus <moritz@bunkus.org>
* Released v1.4.4.
* KaxInternalBlock::ReadData(): Fixed an invalid memory
access. When reading a block group or a simple block that uses
EBML lacing the frame sizes indicated in the lacing weren't
checked against the available number of bytes. If the indicated
frame size was bigger than the whole block's size the parser would
read beyond the end of the buffer resulting in a heap information
leak.
2015-10-17 Moritz Bunkus <moritz@bunkus.org>
* Released v1.4.3.
2015-05-02 Daniel Winzen <d@winzen4.de>
* all: a couple of optimizations in the main library and a memory
leak fix in the tests
2015-02-01 Jan Engelhardt <jengelh@inai.de>
* build system: fix linking against libEBML
2015-01-04 Moritz Bunkus <moritz@bunkus.org>
* Released v1.4.2.
2014-12-21 Moritz Bunkus <moritz@bunkus.org>
* build system: switched the build system from hand-crafted
Makefiles to an autoconf/automake-based system. A pkg-config file
will be installed as well; its name is »libmatroska«. Based on a
similar patch for libEBML by Jan Engelhardt <jengelh@inai.de>.
2014-12-20 Moritz Bunkus <moritz@bunkus.org>
* KaxBlock::ReadData(): fixed several instances of unchecked
memory access leading to invalid memory access/segmentation faults
with invalid or broken data inside block groups/simple blocks.
2014-12-19 Moritz Bunkus <moritz@bunkus.org>
* KaxBlock::ReadInternalHead(): fixed a off-by-one buffer overflow
if with EBML lacing and exactly one frame in the lace.
2013-09-17 mosu
New 1.4.1 version:
- Added new elements/classes DiscardPadding, CodecDelay and
SeekPreRoll
- The licensing information has been cleared up/unified.
- The Makefile now contain options for specifying the destination
base directory during installation ("DESTDIR") and for
specifying which library types to build ("link").
- The libraries are built without the "-ansi" and
"-fno-gnu-keywords" flags on Linux
- Code cleanup
2013-03-19 mosu/robux4
New 1.4.0 version:
* Note that this release is not binary compatible to 1.3.0 due to
the dependancy on libEBML 1.3.0 which is not binary compatible
to its predecessor.
- Added new elements CueDuration, CueRelativePosition,
ChapterStringUID, VideoAlphaMode and DefaultDecodedFieldDuration
- Removed the Debian build files from our package.
2011-09-23 robux4/mosu
New 1.3.0 version:
- initialize all data members
- The KaxCodeVersion variable now resides in the library instead of being declared static in the header file.
- make KaxChapterSegmentEditionUID an unsigned integer to match the KaxChapterEditionUID it's supposed to target
- This release is not binary compatible to 1.2.x.
2011-06-26 robux4/mosu
New 1.2.0 version:
- skip data from KaxBlockVirtual as it should not be used
- use semantic generated from the specs so there is no more possible mismatch
2011-02-02 impulze
* trunk/libmatroska/test/test9.cpp
- also remove no longer needed tests for old/outdated/previous tag system
2011-01-30 robux4/mosu
New 1.1.0 version:
- give access to the SetParent to KaxSimpleBlock as well
- change the placement of a MATROSKA_DLL_API so that it actually works
- remove all references to the old/outdated/previous tag system
- add the possibility for a DataBuffer class to use its own internal memory
- KaxCues::AddBlockGroup() was removed as it's broken beyond repair
- add KaxTrackOperation and related elements for combined stereo/3D tracks or joined virtual tracks
- fix a memory leak in KaxReferenceBlock when an internal KaxBlockBlob was created
- Increased library .so name due to binary incompatible changes in libebml
2010-06-04 robux4/mosu
New 1.0.0 version:
- rename the library .so name as it's backward incompatible
2010-04-30 robux4/mosu
New 0.9.0 version:
- fix a memory freeing issue in KaxBlock
- use the macros from the new libebml 0.8.0 to simplify the element definitions and avoid possible typo bugs
- fix some building issues on Linux and MinGW
- add matroska_init() and matroska_done() functions, necessary when used with libebml v2
- use the new libebml iterators of EbmlMaster where possible
2007-01-19 09:58 robux4
* trunk/libebml/libebml.proj, trunk/libmatroska/libmatroska.proj,
trunk/libmatroska/test/ebml/ebml.proj,
trunk/libmatroska/test/mux/mux.proj,
trunk/libmatroska/test/tags/tags.proj,
trunk/libmatroska/test/test.proj,
trunk/libmatroska/test/utf8/utf8.proj: add support for coremake
building for the moment the config.h and coremake are referenced
by a parent project
2007-01-15 16:01 mosu
* trunk/libmatroska/debian/changelog,
trunk/libmatroska/matroska/KaxVersion.h: Version number upgrade to
0.8.1.
2007-01-14 17:20 mosu
* trunk/libmatroska/matroska/KaxBlock.h,
trunk/libmatroska/matroska/KaxCluster.h,
trunk/libmatroska/matroska/KaxCuesData.h,
trunk/libmatroska/src/KaxBlock.cpp,
trunk/libmatroska/src/KaxCues.cpp,
trunk/libmatroska/src/KaxCuesData.cpp: Added support for
KaxCodecState and for indexing them in the cues.
2006-06-02 14:32 mosu
* trunk/libmatroska/make/linux/Makefile: Overwrite existing symlinks
during install.
2006-03-30 19:57 mosu
* trunk/libmatroska/make/linux/Makefile: Do not abort if the symlink
exists already.
2005-10-18 18:02 mosu
* trunk/libmatroska/ChangeLog, trunk/libmatroska/debian/changelog:
Changed the version in the Debian control file & automatic
ChangeLog update.
2005-10-16 13:06 robux4
* trunk/libmatroska/src/KaxBlock.cpp: libmatroska: set the
discardable bit of SimpleBlock correctly
2005-10-16 10:28 robux4
* trunk/libmatroska/matroska/KaxBlock.h,
trunk/libmatroska/src/KaxBlock.cpp: libmatroska: support for
reading extra features of SimpleBlock
2005-10-15 17:00 robux4
* trunk/libmatroska/src/KaxBlock.cpp: libmatroska: better decision
to lace or not
2005-10-15 15:56 robux4
* trunk/libebml/ebml/EbmlElement.h, trunk/libebml/ebml/EbmlMaster.h,
trunk/libebml/src/EbmlElement.cpp, trunk/libebml/src/EbmlVoid.cpp,
trunk/libmatroska/src/KaxBlock.cpp: libebml/libmatroska: fix a
major bug when "unknown size" was used (Haali does)
2005-10-15 12:34 robux4
* trunk/libmatroska/src/KaxCuesData.cpp: libmatroska: fix
compilation under gcc
2005-10-14 19:36 robux4
* trunk/libmatroska/matroska/KaxBlock.h,
trunk/libmatroska/src/KaxBlock.cpp,
trunk/libmatroska/src/KaxCluster.cpp,
trunk/libmatroska/src/KaxCuesData.cpp: libmatroska: allow correct
compilation & linking with MATROSKA_VERSION set to 1
2005-10-13 21:21 robux4
* trunk/libmatroska/src/KaxCues.cpp: libmatroska: simplify the code
for the backward compatibility
2005-10-13 21:16 robux4
* trunk/libmatroska/src/KaxBlockData.cpp,
trunk/libmatroska/src/KaxCues.cpp: libmatroska: make the newer
library work with older code (again after internal changes)
2005-10-13 20:35 robux4
* trunk/libmatroska/src/KaxBlock.cpp,
trunk/libmatroska/src/KaxBlockData.cpp: libmatroska: KaxBlockBlob
now works in NO SimpleBlock mode too that means writing or
KaxSimpleBlock is now fully functional
2005-10-13 19:33 robux4
* trunk/libmatroska/src/KaxBlock.cpp,
trunk/libmatroska/src/KaxBlockData.cpp: libmatroska: fix writing
in auto SimpleBlock mode
2005-10-12 22:18 robux4
* trunk/libmatroska/src/KaxBlock.cpp: libmatroska: fix for the
non-forced SimpleBlock use
2005-10-12 22:12 robux4
* trunk/libmatroska/matroska/KaxBlock.h,
trunk/libmatroska/src/KaxBlock.cpp,
trunk/libmatroska/src/KaxCluster.cpp,
trunk/libmatroska/src/KaxCues.cpp: libmatroska: writing from
KaxBlockBlob now works !
2005-10-12 21:21 robux4
* trunk/libmatroska/matroska/KaxCluster.h,
trunk/libmatroska/src/KaxCluster.cpp: libmatroska: prepare the
cluster to render from KaxBlockBlob
2005-10-10 20:48 robux4
* trunk/libmatroska/matroska/KaxBlockData.h,
trunk/libmatroska/matroska/KaxCuesData.h,
trunk/libmatroska/matroska/KaxTypes.h,
trunk/libmatroska/src/KaxBlockData.cpp: libmatroska: correct
copyright year
2005-10-10 20:47 robux4
* trunk/libmatroska/matroska/KaxBlock.h,
trunk/libmatroska/matroska/KaxBlockData.h,
trunk/libmatroska/matroska/KaxCuesData.h,
trunk/libmatroska/matroska/KaxTypes.h,
trunk/libmatroska/src/KaxBlock.cpp,
trunk/libmatroska/src/KaxBlockData.cpp,
trunk/libmatroska/src/KaxCues.cpp,
trunk/libmatroska/src/KaxCuesData.cpp: libmatroska: more code to
use SimpleBlock automatically (when enabled) reworked the KaxCues
code to use KaxBlockBlob where possible, the previous API may not
be 100% compatible (mkvmerge not affected) the code is still not
100% operational
2005-10-09 14:30 robux4
* trunk/libmatroska/matroska/KaxBlock.h,
trunk/libmatroska/src/KaxCues.cpp,
trunk/libmatroska/src/KaxCuesData.cpp: libmatroska: simplify a
cast
2005-10-09 14:18 robux4
* trunk/libmatroska/matroska/FileKax.h,
trunk/libmatroska/matroska/KaxAttached.h,
trunk/libmatroska/matroska/KaxAttachments.h,
trunk/libmatroska/matroska/KaxBlock.h,
trunk/libmatroska/matroska/KaxBlockData.h,
trunk/libmatroska/matroska/KaxChapters.h,
trunk/libmatroska/matroska/KaxCluster.h,
trunk/libmatroska/matroska/KaxClusterData.h,
trunk/libmatroska/matroska/KaxConfig.h,
trunk/libmatroska/matroska/KaxContentEncoding.h,
trunk/libmatroska/matroska/KaxContexts.h,
trunk/libmatroska/matroska/KaxCues.h,
trunk/libmatroska/matroska/KaxCuesData.h,
trunk/libmatroska/matroska/KaxInfo.h,
trunk/libmatroska/matroska/KaxInfoData.h,
trunk/libmatroska/matroska/KaxSeekHead.h,
trunk/libmatroska/matroska/KaxSegment.h,
trunk/libmatroska/matroska/KaxTagMulti.h,
trunk/libmatroska/matroska/KaxTags.h,
trunk/libmatroska/matroska/KaxTrackAudio.h,
trunk/libmatroska/matroska/KaxTrackEntryData.h,
trunk/libmatroska/matroska/KaxTrackVideo.h,
trunk/libmatroska/matroska/KaxTracks.h,
trunk/libmatroska/matroska/KaxTypes.h,
trunk/libmatroska/matroska/KaxVersion.h,
trunk/libmatroska/matroska/c/libmatroska.h,
trunk/libmatroska/matroska/c/libmatroska_t.h,
trunk/libmatroska/src/KaxBlock.cpp,
trunk/libmatroska/src/KaxCues.cpp,
trunk/libmatroska/src/KaxCuesData.cpp: libmatroska: introduce
KaxBlockBlob to automatically select between BlockGroup and
SimpleBlock + native eol-style
2005-10-08 15:32 robux4
* trunk/libmatroska/matroska/KaxConfig.h: libmatroska: the default
matroska version to use is now 2
2005-10-08 15:27 robux4
* trunk/libmatroska/src/KaxBlock.cpp,
trunk/libmatroska/src/KaxCluster.cpp: libmatroska: make
KaxSimpleBlock really MATROSKA_VERSION 2
2005-10-08 15:04 robux4
* trunk/libmatroska/matroska/KaxBlock.h: libmatroska: KaxSimpleBlock
is MATROSKA_VERSION 2
2005-10-08 14:39 robux4
* trunk/libmatroska/matroska/KaxBlock.h,
trunk/libmatroska/src/KaxBlock.cpp: libmatroska: first attempt to
write the new SimpleBlock bits correctly
2005-10-06 21:30 robux4
* trunk/libmatroska/src/KaxCluster.cpp: libmatroska: fix the
mandatory setting according to the new specs
2005-10-06 21:20 robux4
* trunk/libmatroska/matroska/KaxBlock.h,
trunk/libmatroska/src/KaxBlock.cpp,
trunk/libmatroska/src/KaxCluster.cpp: libmatroska: add
KaxSimpleBlock and a parent class used by KaxBlock (not tested
yet, and some things left to implement)
2005-08-31 13:26 mosu
* trunk/libmatroska/make/linux/fedora-core.spec,
trunk/libmatroska/make/linux/suse-libmatroska-makefile.diff,
trunk/libmatroska/make/linux/suse.spec: Added the spec files I use
for building libmatroska on SuSE and Fedora Core.
2005-08-30 14:39 robux4
* trunk/libmatroska/matroska/KaxVersion.h: libmatroska: the next
version will be 0.7.8
2005-08-30 14:39 robux4
* trunk/libmatroska/src/KaxAttached.cpp,
trunk/libmatroska/src/KaxTracks.cpp: libmatroska: compilation
fixes for the new elements
2005-08-30 14:28 robux4
* trunk/libmatroska/matroska/KaxChapters.h,
trunk/libmatroska/matroska/KaxTrackEntryData.h,
trunk/libmatroska/src/KaxAttached.cpp,
trunk/libmatroska/src/KaxChapters.cpp,
trunk/libmatroska/src/KaxTrackEntryData.cpp,
trunk/libmatroska/src/KaxTracks.cpp: added:
KaxChapterSegmentEditionUID and KaxTrackAttachmentLink
2005-08-30 14:20 robux4
* trunk/libmatroska/matroska/KaxAttached.h,
trunk/libmatroska/src/KaxAttached.cpp: libmatroska: added
KaxFileReferral
2005-08-26 08:19 mosu
* trunk/libmatroska/matroska/KaxBlock.h: Make the compiler happy:
gcc wants classes with virtual functions to have virtual
destructors.
2005-05-22 07:28 mosu
* trunk/libmatroska/ChangeLog: Automatic ChangeLog update.
2005-05-22 07:28 mosu
* trunk/libmatroska, trunk/libmatroska/debian: Ignore some files and
directories created during the Debian build process.
2005-05-22 07:27 mosu
* trunk/libmatroska/debian/changelog,
trunk/libmatroska/matroska/KaxVersion.h: Bumped the version number
to 0.7.7 in the places that robux4 forgot.
2005-05-19 19:16 robux4
* trunk/libebml/ebml/EbmlVersion.h,
trunk/libmatroska/matroska/KaxVersion.h: update version numbers
for the upcoming release
2005-05-03 06:56 mosu
* trunk/libmatroska/matroska/KaxTrackEntryData.h: The default value
of MaxBlockAdditionID is 0, not 1.
2005-04-19 07:00 mosu
* trunk/libmatroska/make/linux/Makefile: Do not compile shared libs
on Mac OS X due to how they should be handled there. If need
arises we can always implement it properly. Patch by Shawn
Holwegner <shawn () holwegner ! com>
2005-04-16 11:29 mosu
* trunk/libmatroska/ChangeLog: Automatic ChangeLog update.
2005-04-16 11:29 mosu
* trunk/libmatroska/debian/rules,
trunk/libmatroska/make/linux/Makefile: Updated the Linux build
system and added targets for installing only the static lib +
headers. Updated the Debian package build script for that, too.
2005-04-16 11:24 mosu
* trunk/libmatroska/debian/changelog: Updated the Debian package's
version number.
2005-04-09 22:11 robux4
* trunk/libmatroska/matroska/KaxChapters.h: libmatroska:
KaxChapterSegmentUID is an EbmlBinary
2005-04-05 12:02 robux4
* trunk/libmatroska/matroska/KaxBlock.h,
trunk/libmatroska/src/KaxBlock.cpp: libmatroska: add support for
the invisible flag
2005-03-28 14:49 robux4
* trunk/libmatroska/matroska/KaxInfoData.h: libmatroska: make all
segment UID derive from the same class for easier handling
2005-03-19 11:14 mosu
* trunk/libmatroska/src/KaxChapters.cpp: Wrong element ID according
to the specs.
2005-03-19 10:37 mosu
* trunk/libmatroska/make/linux: Ignore the shared libs.
2005-03-19 10:36 mosu
* trunk/libmatroska/make/linux/Makefile: 'clean' should remove the
.los, too. Provide separate targets for the static and the shared
lib. 'lib' is obsolete.
2005-03-17 09:36 robux4
* trunk/libebml/src/EbmlCrc32.cpp,
trunk/libmatroska/src/KaxTrackEntryData.cpp: some strings to
watermark the code
2005-03-17 09:14 robux4
* trunk/libebml/src/EbmlHead.cpp,
trunk/libmatroska/src/KaxSegment.cpp: some strings to watermark
the code
2005-03-16 18:30 robux4
* trunk/libebml/src/StdIOCallback.cpp,
trunk/libmatroska/matroska/KaxContexts.h,
trunk/mkxuncat/mkxuncat.cpp, trunk/mkxuncat/mkxuncat.vcproj: misc
compilation fixes
2005-03-14 10:34 robux4
* trunk/libmatroska/matroska/KaxChapters.h,
trunk/libmatroska/matroska/KaxVersion.h,
trunk/libmatroska/src/KaxChapters.cpp: libmatroska: added
KaxChapterSegmentUID
2005-03-13 10:49 robux4
* trunk/libebml/make/linux/Makefile,
trunk/libmatroska/make/linux/Makefile: libebml/libmatroska: allow
to build as shared libraries for Gentoo
2005-03-03 13:13 robux4
* trunk/libmatroska/matroska/KaxChapters.h,
trunk/libmatroska/matroska/KaxInfoData.h,
trunk/libmatroska/matroska/KaxTrackEntryData.h,
trunk/libmatroska/matroska/KaxVersion.h,
trunk/libmatroska/src/KaxChapters.cpp,
trunk/libmatroska/src/KaxInfo.cpp,
trunk/libmatroska/src/KaxInfoData.cpp,
trunk/libmatroska/src/KaxTrackEntryData.cpp,
trunk/libmatroska/src/KaxTracks.cpp,
trunk/libmatroska/test/ebml/test0.cpp,
trunk/libmatroska/test/ebml/test00.cpp,
trunk/libmatroska/test/mux/test6.cpp,
trunk/libmatroska/test/utf8/test5.cpp: update the copyright dates
2005-02-06 20:03 mosu
* trunk/libmatroska/debian/changelog,
trunk/libmatroska/matroska/KaxVersion.h: Bumped the version number
to 0.7.5.
2005-02-06 19:51 mosu
* trunk/libmatroska/ChangeLog: Automatic ChangeLog update (with a
new program -- that's why the diff is so huge)
2005-02-06 19:49 mosu
* trunk/libmatroska/debian/control: Let's require the latest libebml
for building.
2005-02-06 18:12 mosu
* trunk/libmatroska/make/linux/Makefile: Output an error if a mingw
gcc is used with the Linux Makefile (I simply do that too often).
2005-01-31 14:04 mosu
* trunk/libmatroska/make/linux/check_ids: Also output the
files/classes in which the duplicate IDs occur.
2005-01-31 13:54 robux4
* trunk/libmatroska/src/KaxInfoData.cpp: libmatroska: fix the
segment family UID
2005-01-31 13:48 mosu
* trunk/libmatroska/matroska/KaxTrackEntryData.h,
trunk/libmatroska/src/KaxTrackEntryData.cpp: The usual compilation
fixes.
2005-01-31 13:39 robux4
* trunk/libmatroska/matroska/KaxTrackEntryData.h,
trunk/libmatroska/src/KaxTrackEntryData.cpp,
trunk/libmatroska/src/KaxTracks.cpp: libmatroska: no more
TrackAngle and new TrackTranslate elements
2005-01-30 18:00 mosu
* trunk/libmatroska/src/KaxInfoData.cpp: Some leftovers from
renaming ChapterLink to ChapterTranslate.
2005-01-28 12:10 robux4
* trunk/libmatroska/matroska/KaxInfoData.h,
trunk/libmatroska/src/KaxInfo.cpp,
trunk/libmatroska/src/KaxInfoData.cpp: libmatroska: rename
ChapterLink* to ChapterTranslate*
2005-01-20 12:01 mosu
* trunk/libmatroska/make/mingw32/Makefile: Only remove files that
might have been built (and not e.g. libmatroska.dev).
2005-01-17 13:48 robux4
* trunk/libmatroska/matroska/KaxInfoData.h,
trunk/libmatroska/src/KaxInfoData.cpp: libmatroska: add
KaxChapterLinkEditionUID
2005-01-15 12:47 robux4
* trunk/libmatroska/src/KaxInfo.cpp: libmatroska: fix the
KaxSegmentFamily flags
2005-01-13 17:51 robux4
* trunk/libmatroska/matroska/KaxInfoData.h,
trunk/libmatroska/src/KaxInfoData.cpp: libmatroska: the usual
post-commit fixes
2005-01-13 16:41 robux4
* trunk/libmatroska/matroska/KaxInfoData.h,
trunk/libmatroska/src/KaxInfo.cpp,
trunk/libmatroska/src/KaxInfoData.cpp: libmatroska: added
KaxSegmentFamily, KaxChapterLink, KaxChapterLinkCodec and
KaxChapterLinkID
2005-01-05 16:14 robux4
* trunk/libmatroska/make/linux/Makefile: patches from the VLC
repository
2005-01-03 19:20 mosu
* trunk/libmatroska/src/KaxChapters.cpp: An element cannot require
itself to be a mandatory child element.
2005-01-03 15:47 mosu
* trunk/libmatroska/matroska/KaxChapters.h,
trunk/libmatroska/src/KaxChapters.cpp: Look! Squirrels! (The usual
compilation fixes after one of robux' "I commit from work without
having compiled it first" commits :-) )
2005-01-03 12:31 robux4
* trunk/libmatroska/matroska/KaxChapters.h,
trunk/libmatroska/src/KaxChapters.cpp: libmatroska: update with
latest changes in the chapter codecs (may not compile)
2004-12-18 22:26 mosu
* trunk/libmatroska/src/KaxBlock.cpp: Move all of the (re-)activated
Matroska v1 elements out of "#if == 2" blocks.
2004-12-18 17:52 robux4
* trunk/libmatroska/matroska/KaxBlock.h,
trunk/libmatroska/matroska/KaxTrackEntryData.h,
trunk/libmatroska/src/KaxBlock.cpp,
trunk/libmatroska/src/KaxTrackEntryData.cpp,
trunk/libmatroska/src/KaxTracks.cpp: support for
KaxMaxBlockAdditionID and fix default values
2004-12-18 08:49 robux4
* trunk/libmatroska/matroska/KaxBlock.h: BlockAdditions is in
Matroska 1 now
2004-12-15 14:24 robux4
* trunk/libmatroska/matroska/c/libmatroska_t.h: added the button
track type
2004-11-30 15:45 mosu
* trunk/libmatroska/matroska/KaxBlock.h,
trunk/libmatroska/src/KaxBlock.cpp: Use malloc() and free()
instead of new[] and delete[] where the lib might deal with
pointers that have been allocated by the app, or where the app has
allocated the memory. Reason: new[]ed memory cannot be
realloc()ed.
2004-11-28 17:43 robux4
* trunk/libmatroska/matroska/KaxBlock.h,
trunk/libmatroska/src/KaxBlock.cpp: remove support for the gap
flag in the Block
2004-11-28 15:24 robux4
* trunk/libmatroska/matroska/KaxCluster.h,
trunk/libmatroska/src/KaxCluster.cpp,
trunk/libmatroska/src/KaxClusterData.cpp: add almost automatic
handling of SilentTracks
2004-11-19 12:17 mosu
* trunk/libmatroska/make/mingw32/Makefile: Compile libmatroska as a
DLL by default (is anyone except me using this mingw Makefile
anyway?). Do not remove the dependency file on "make clean".
2004-11-17 14:51 robux4
* trunk/libmatroska/matroska/KaxTrackEntryData.h,
trunk/libmatroska/src/KaxTrackEntryData.cpp,
trunk/libmatroska/src/KaxTracks.cpp: added KaxTrackFlagForced
2004-11-17 08:45 mosu
* trunk/libmatroska/make/linux/Makefile: Do not remove the .depend
file on "make clean".
2004-11-14 10:40 mosu
* trunk/libmatroska/matroska/KaxVersion.h: Numbers starting with '0'
are octal numbers. Therefore a version like '0.8.4' cannot be
expressed as '000804'.
2004-11-13 21:15 mosu
* trunk/libmatroska/make/mingw32,
trunk/libmatroska/make/mingw32/Makefile: Fixed "make depend".
Ignore a couple of files.
2004-11-13 11:30 mosu
* trunk/libmatroska/make/linux: Ignore the .depend file created by
"make depend".
2004-11-13 11:29 mosu
* trunk/libmatroska/make/linux/Makefile: Improved the dependency
calculation to be more portable (makedepend doesn't exist
everywhere, and it doesn't necessarily use the compiler we want).
2004-10-02 16:02 robux4
* trunk/libmatroska/matroska/KaxTrackEntryData.h,
trunk/libmatroska/src/KaxTrackEntryData.cpp,
trunk/libmatroska/src/KaxTracks.cpp: added KaxTrackAngle and
various fixes
2004-10-02 15:42 robux4
* trunk/libmatroska/src/KaxTracks.cpp: KaxTrackOverlay is not in
"Matroska 2"
2004-10-02 15:40 robux4
* trunk/libmatroska/src/KaxCluster.cpp,
trunk/libmatroska/src/KaxClusterData.cpp: correct the
unique/multiple attribute
2004-10-02 15:39 robux4
* trunk/libmatroska/src/KaxTracks.cpp: TrackOverlay is now multiple
2004-10-02 15:08 robux4
* trunk/libmatroska/matroska/KaxClusterData.h,
trunk/libmatroska/src/KaxCluster.cpp,
trunk/libmatroska/src/KaxClusterData.cpp: added
KaxClusterSilentTracks and KaxClusterSilentTrackNumber
2004-09-26 10:34 mosu
* trunk/libmatroska/ChangeLog: Automatic ChangeLog update
2004-09-26 10:21 mosu
* trunk/libmatroska/debian/changelog,
trunk/libmatroska/debian/control: Bumped the version number to
0.7.4 and the libebml build requirements to 0.7.2 in the Debian
build system.
2004-09-26 10:20 mosu
* trunk/libmatroska/make/linux/check_ids: Added a small script that
looks for duplicate EBML IDs in all of libmatroska's source files.
2004-09-11 17:42 mosu
* trunk/libmatroska/matroska/KaxChapters.h: EditionProcessed has a
default value (0) according to the specs.
2004-09-04 16:29 robux4
* trunk/libmatroska/matroska/KaxChapters.h,
trunk/libmatroska/src/KaxChapters.cpp: KaxEditionManaged becomes
KaxEditionProcessed and mandatory KaxEditionManagedPrivate becomes
KaxChapterManagedPrivate and moves
2004-09-03 13:38 robux4
* trunk/libmatroska/matroska/KaxTrackAudio.h: no more automatic
OutputSamplingFrequency default value
2004-09-02 14:17 mosu
* trunk/libmatroska/src/KaxChapters.cpp: The usual after-robux4
compilation fix ;-)
2004-09-02 11:08 robux4
* trunk/libmatroska/matroska/KaxChapters.h,
trunk/libmatroska/src/KaxChapters.cpp: add support for
KaxChapterProcessCommand and KaxEditionManagedPrivate
2004-08-31 17:02 mosu
* trunk/libmatroska/matroska/KaxAttached.h: The ValidateSize
function is neither needed nor correct (probably copy & paste from
somewhere). Integers of all sizes are accepted as in all the other
UID cases.
2004-08-30 18:52 mosu
* trunk/libmatroska/src/KaxTracks.cpp: MinCache IS mandatory. My
bad.
2004-08-30 18:17 mosu
* trunk/libmatroska/src/KaxTracks.cpp: MinCache is not mandatory.
2004-08-30 09:21 robux4
* trunk/libmatroska/src/KaxChapters.cpp,
trunk/libmatroska/src/KaxTrackVideo.cpp,
trunk/libmatroska/src/KaxTracks.cpp: flags are mandatory
2004-08-28 14:04 robux4
* trunk/libmatroska/make/vc7/lib/dll,
trunk/libmatroska/make/vc7/lib/dll/libmatroskadll.v71.vcproj,
trunk/libmatroska/make/vc7/vc7.sln: allow DLL building with MSVC7
(not compatible with the MinGW DLLs)
2004-08-27 18:58 robux4
* trunk/libmatroska/matroska/KaxTag.h: KaxTagTargetTypeValue default
to 50
2004-08-27 12:25 robux4
* trunk/libmatroska/src/KaxTag.cpp: TargetTypeValue is no longer
mandatory
2004-08-27 10:01 mosu
* trunk/libmatroska/src/KaxChapters.cpp: Fixed the wrong element
names.
2004-08-27 09:31 robux4
* trunk/libmatroska/matroska/KaxTag.h,
trunk/libmatroska/src/KaxTag.cpp: add KaxTagTargetTypeValue as in
the specs
2004-08-27 09:22 robux4
* trunk/libmatroska/matroska/KaxChapters.h,
trunk/libmatroska/src/KaxChapters.cpp: add KaxChapterPhysicalEquiv
as in the new specs
2004-08-25 14:56 mosu
* trunk/libmatroska/matroska/KaxTrackVideo.h,
trunk/libmatroska/src/KaxChapters.cpp: Fixed the compilation.
2004-08-25 14:48 mosu
* trunk/libmatroska/matroska/KaxVersion.h: Pushed the version
number.
2004-08-25 14:44 robux4
* trunk/libmatroska/matroska/KaxChapters.h,
trunk/libmatroska/src/KaxChapters.cpp: add KaxChapterProcess and
KaxChapterProcessTime
2004-08-25 14:22 robux4
* trunk/libmatroska/matroska/KaxTrackVideo.h,
trunk/libmatroska/src/KaxTrackVideo.cpp: add the new PixelCropXXX
elements
2004-08-21 20:18 mosu
* trunk/libmatroska/ChangeLog: Updates
2004-08-19 20:08 mosu
* trunk/libmatroska/src/KaxChapters.cpp: Wrong element ID.
2004-08-19 17:16 robux4
* trunk/libmatroska/src/KaxChapters.cpp: I always forget to update
the table size
2004-08-19 17:15 robux4
* trunk/libmatroska/matroska/KaxChapters.h,
trunk/libmatroska/src/KaxChapters.cpp: added KaxEditionFlagDefault
and KaxEditionManaged
2004-08-19 08:54 robux4
* trunk/libmatroska/matroska/KaxTag.h,
trunk/libmatroska/src/KaxTag.cpp: add the new TargetType element
in tags
2004-08-16 21:22 mosu
* trunk/libmatroska/ChangeLog: Updates
2004-08-16 21:04 mosu
* trunk/libmatroska/matroska/KaxTag.h: Set the default value for
KaxTagLangue to "und" complying with the specs.
2004-08-16 20:49 mosu
* trunk/libmatroska/debian/changelog,
trunk/libmatroska/matroska/KaxVersion.h: New version number 0.7.3
because of the changes / additions to the tags.
2004-08-10 15:49 robux4
* trunk/libmatroska/src/KaxTag.cpp: never make the same mistake
twice...
2004-08-10 14:03 robux4
* trunk/libmatroska/matroska/KaxTag.h,
trunk/libmatroska/src/KaxTag.cpp: rename the new KaxTagLanguage to
KaxTagLangue
2004-08-10 12:58 robux4
* trunk/libmatroska/matroska/KaxTag.h,
trunk/libmatroska/src/KaxTag.cpp,
trunk/libmatroska/src/KaxTags.cpp: fix mandatory values add
support for TagLanguage and TagDefault
2004-08-06 07:34 mosu
* trunk/libmatroska/ChangeLog: Updates
2004-08-05 11:59 robux4
* trunk/libmatroska/matroska/KaxChapters.h,
trunk/libmatroska/src/KaxChapters.cpp: support for
EditionFlagHidden (not compiled!)
2004-08-04 17:49 mosu
* trunk/libmatroska/ChangeLog, trunk/libmatroska/debian/changelog:
Updated the ChangeLog and bumped the version number on the Debian
package to 0.7.2.
2004-08-01 15:33 mosu
* trunk/libmatroska/matroska/KaxInfoData.h: Use a double for the
KaxDuration element and not only a float. Otherwise the duration
might be off a couple of samples for large values due to the
limited resolution of a float.
2004-07-31 09:01 robux4
* trunk/libmatroska/matroska/KaxTag.h: The default value of 0 makes
sense again at the container level (not binary content)
2004-07-30 20:31 mosu
* trunk/libmatroska/src/KaxChapters.cpp,
trunk/libmatroska/src/KaxTag.cpp: Never commit code without having
compiled it before :) When adding elements to an array the array
size has to be adjusted.
2004-07-30 12:47 robux4
* trunk/libmatroska/matroska/KaxVersion.h: push the version number
to avoid confusion if beta softwares are released in public
2004-07-30 12:45 robux4
* trunk/libmatroska/matroska/KaxChapters.h,
trunk/libmatroska/matroska/KaxTag.h,
trunk/libmatroska/src/KaxChapters.cpp,
trunk/libmatroska/src/KaxTag.cpp: add an edition UID and clean the
code according to the specs (I haven't tried to compile !!!)
2004-07-27 07:56 mosu
* trunk/libmatroska/test/mux/test8.cpp: Fix for compilation on
NetBSD. Patch by Lubomir Sedlacik (salo at Xtrmntr dot org).
2004-07-26 17:53 mosu
* trunk/libmatroska/make/mingw32/Makefile: Proper description for
the SHARED option. Make building the lib statically the default
just like it is for libembl.
2004-07-25 10:37 mosu
* trunk/libmatroska/debian/changelog,
trunk/libmatroska/debian/control,
trunk/libmatroska/matroska/KaxVersion.h: Bumped the version number
to 0.7.1. Same for libebml dependencies for the Debian package.
2004-07-22 20:28 mosu
* trunk/libmatroska/make/mingw32/Makefile: Do not build the test
apps by default.
2004-07-19 16:43 mosu
* trunk/libmatroska/make/linux/Makefile: Let the user specify his
own CXXFLAGS and CPPFLAGS.
2004-07-14 13:29 mosu
* trunk/libmatroska/src/KaxCues.cpp: I hate tabs. They suck.
Especially in multi user development.
2004-07-14 13:27 mosu
* trunk/libmatroska/src/KaxCues.cpp: Do not let the user add a
BlockGroup more than once to the cues. KaxCluster::Render() does
call KaxCues::PositionSet(), but PositionSet() only cleans the
first occurence. This will lead to an assert() in the KaxCues
d\tor.
2004-07-09 21:19 mosu
* trunk/libmatroska/debian/rules: debian/rules should be executable.
2004-07-09 21:10 mosu
* trunk/libmatroska/make/linux,
trunk/libmatroska/make/linux/.cvsignore: Use the svn:ignore
property instead of the .cvsignore file.