-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathChangeLog
1448 lines (1164 loc) · 56.3 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
2010-01-27 ashuang
* [r419] plugins/v4l2/input_v4l2.c: remove redundant dbg()
* [r418] plugins/v4l2/input_v4l2.c: V4L2 tweaks
* [r417] plugins/v4l2/input_v4l2.c: try to enumerate v4l2 controls
better.
2010-01-13 ashuang
* [r415] README, camunits.spec.in: update README
2010-01-11 markus.achtelik
* [r414] camunits/unit.c: fixed return value bug in
cam_unit_control_try_set_##type()
2009-10-20 ashuang
* [r412] plugins/dc1394/input_dc1394.c: set framerate for non
format 7 modes
2009-09-02 ashuang
* [r411] configure.in: add --without-dc1394-plugin configure option
2009-05-25 ashuang
* [r410] camunits/unit_control.c: camunits float control range
(abachrac)
2009-04-21 ashuang
* [r408] ChangeLog, NEWS, configure.in: release 0.2.1
2009-04-19 ashuang
* [r406] plugins/dc1394/input_dc1394.c: re-init dc1394 unit when
packet size changes. add some debugging info
2009-04-13 ashuang
* [r402] camunits/unit_control.c: don't use floor and log10
functions
2009-04-09 ashuang
* [r401] camunits/unit_driver.c, camunits/unit_manager.c: unit
manager unset singleton on finalize unit driver debugging output
2009-03-26 ashuang
* [r395] plugins/convert/filter_fast_bayer.c: fix fast_debayer
regression (auto-setting of tiling control based on input)
2009-03-25 ashuang
* [r394] camunits-gtk/Makefile.am, camunits/Makefile.am,
configure.in: configure.in set AM_CFLAGS instead of CFLAGS
* [r392] camunits/unit_format.h: update code docs
2009-03-20 ashuang
* [r390] camunits-gtk/camunits-gtk.pc.in, camunits/camunits.pc.in:
generated pkg-config files, remove -I include/camunits
2009-03-17 ashuang
* [r386] bootstrap.sh, docs/plugins/convert-to-rgb8.sgml,
plugins/convert/convert_to_rgb8.c: add UYVY as input for
convert.to_rgb8 add bootstrap.sh convenience scripts
2009-03-11 ashuang
* [r383] ChangeLog, NEWS, configure.in: release 0.2.0
* [r382] plugins/other/input_log.c: log playback hard mode bugfix
* [r381] camunits/unit_chain.c: unit_chain: shutdown unit before
disconnecting signal handlers
* [r380] camunits/unit.c: fix null reference segv
* [r378] camunits/unit_chain.c, camunits/unit_driver.c,
plugins/other/output_logger.c: logger: initialize gthread if not
already initialized unit_chain, unref manager last
2009-03-10 ashuang
* [r376] plugins/convert/filter_fast_bayer.c: restore old values
for bayer tiling control
* [r375] camunits-gtk/cam_tree_store.h,
camunits-gtk/unit_manager_widget.c,
camunits-gtk/unit_manager_widget.h, camview/camview.c,
docs/reference/libcamunits-gtk/camunits-gtk-sections.txt: change
CamUnitManagerWidget API
cam_unit_manager_widget_new no longer takes a parameter removed
cam_unit_manager_widget_set_manager
* [r374] camunits-gtk/cam_tree_store.c,
camunits-gtk/cam_tree_store.h, camunits-gtk/gl_drawing_area.c,
camunits-gtk/gl_drawing_area.h,
camunits-gtk/unit_chain_gl_widget.c,
camunits-gtk/unit_chain_gl_widget.h,
camunits-gtk/unit_chain_widget.c,
camunits-gtk/unit_chain_widget.h,
camunits-gtk/unit_control_widget.c,
camunits-gtk/unit_control_widget.h,
camunits-gtk/unit_description_widget.c,
camunits-gtk/unit_description_widget.h,
camunits-gtk/unit_manager_widget.c,
camunits-gtk/unit_manager_widget.h: move all fields from
camunits-gtk public structs to private structs.
2009-03-08 ashuang
* [r373] camunits-gtk/unit_control_widget.c, camunits/unit.c,
camunits/unit.h, camunits/unit_control.c,
camunits/unit_control.h,
docs/reference/libcamunits/camunits-sections.txt,
plugins/convert/filter_fast_bayer.c,
plugins/dc1394/input_dc1394.c, plugins/other/input_example.c,
plugins/other/input_log.c, plugins/v4l/input_v4l.c,
plugins/v4l2/input_v4l2.c: Modify CamUnitControl API
hide all fields from public struct.
enumerated controls no longer have integer values implicitly
assigned by ordering. integer values associated with enumerated
controls are now explicitly assigned, using arrays of
CamUnitControlEnumValue structs.
modified symbols: cam_unit_add_control_enum
cam_unit_control_new_enum cam_unit_control_modify_enum
new symbols: CamUnitControlEnumValue
cam_unit_control_get_enum_values
* [r372] camunits/unit.c: bugfix
* [r370] examples/filter_plugin/filter_plugin.c: update example
* [r369] docs/tutorial/subclassing.sgml: update docs
* [r368] camunits/unit.c, camunits/unit.h,
docs/reference/libcamunits/camunits-sections.txt,
plugins/convert/convert_colorspace.c,
plugins/convert/convert_jpeg_compress.c,
plugins/convert/convert_jpeg_decompress.c,
plugins/convert/convert_to_rgb8.c,
plugins/convert/filter_fast_bayer.c,
plugins/dc1394/input_dc1394.c, plugins/other/filter_gl.c,
plugins/other/input_example.c, plugins/other/input_log.c,
plugins/other/output_logger.c, plugins/v4l/input_v4l.c,
plugins/v4l2/input_v4l2.c: rename cam_unit_add_output_format_full
to cam_unit_add_output_format
* [r367] camunits/unit.c, camunits/unit.h, camunits/unit_chain.c,
plugins/convert/convert_to_rgb8.c: add const char * name
parameter to cam_unit_set_preferred_format
2009-03-07 ashuang
* [r366] docs/tutorial/subclassing.sgml: update docs
* [r365] camunits/unit.c, camunits/unit.h, camunits/unit_driver.c,
docs/reference/libcamunits/camunits-sections.txt: move all public
fields from CamUnit to private CamUnitPrivate struct. remove
cam_unit_set_id, cam_unit_set_name
* [r363] camunits-gtk/unit_chain_widget.c, camunits/unit.c,
camunits/unit_driver.c, plugins/convert/convert_colorspace.c,
plugins/convert/convert_jpeg_decompress.c,
plugins/convert/convert_to_rgb8.c,
plugins/convert/filter_fast_bayer.c,
plugins/dc1394/input_dc1394.c, plugins/other/filter_gl.c,
plugins/other/input_example.c, plugins/other/input_log.c,
plugins/v4l/input_v4l.c, plugins/v4l2/input_v4l2.c: convert files
to use CamUnit accessor methods instead of accessing struct
fields directly
* [r362] camunits-gtk/unit_control_widget.c, camunits/unit.c,
camunits/unit_chain.c, camunits/unit_control.c,
camunits/unit_control.h: add accessor methods to CamUnitControl
start refactoring to use those methods
* [r361] camunits/unit_driver.c: bugfix
* [r360] camunits-gtk/unit_description_widget.c: bugfix -- null
pointer
2009-03-06 ashuang
* [r359] camunits/framebuffer.h, camunits/unit.h,
camunits/unit_driver.h, docs/tutorial/subclassing.sgml,
examples/filter_plugin/filter_plugin.c: update documentation
* [r358] camlog/camlog.c, camunits-gtk/unit_description_widget.c,
camunits-gtk/unit_manager_widget.c, camunits/unit_driver.c,
camunits/unit_driver.h, camunits/unit_manager.c,
camview/camview.c, configure.in,
docs/reference/libcamunits/camunits-sections.txt,
examples/basic/snapshot.c, plugins/dc1394/input_dc1394.c,
plugins/other/input_log.c, plugins/v4l/input_v4l.c,
plugins/v4l2/input_v4l2.c: hide CamUnitDescription fields from
public struct
* [r357] camlog/camlog.c, camunits-gtk/unit_manager_widget.c,
camunits/unit_chain.h, camunits/unit_driver.c,
camunits/unit_driver.h, camunits/unit_manager.c,
examples/Makefile.am, examples/basic/snapshot.c,
examples/filter_example: hide CamUnitDriver fields from public
struct fix some bugs introduced by last commit
* [r356] camview/camview.c: camview use
cam_unit_manager_get_and_ref instead of chain->manager
* [r354] camlog/camlog.c: remove hack
* [r353] camunits/unit_chain.c, camunits/unit_chain.h,
camunits/unit_manager.c, camunits/unit_manager.h: hide
CamUnitManager and CamUnitChain struct definitions
* [r346] camunits/gl_texture.c, camunits/gl_texture.h,
camunits/unit.c, camunits/unit.h, camunits/unit_format.c,
camunits/unit_format.h, docs/tutorial/subclassing.sgml,
examples/filter_example/filter_example.c,
examples/filter_plugin/filter_plugin.c,
plugins/convert/convert_colorspace.c,
plugins/convert/convert_jpeg_compress.c,
plugins/convert/convert_jpeg_decompress.c,
plugins/convert/convert_to_rgb8.c,
plugins/convert/filter_fast_bayer.c,
plugins/dc1394/input_dc1394.c, plugins/other/filter_gl.c,
plugins/other/input_example.c, plugins/other/input_log.c,
plugins/other/output_logger.c, plugins/v4l/input_v4l.c,
plugins/v4l2/input_v4l2.c: remove max_data_size field from
CamUnitFormat
2009-03-05 ashuang
* [r345] configure.in, plugins/Makefile.am, plugins/misc,
plugins/other: move plugins/misc to plugins/other
* [r344] docs/plugins/Makefile.am,
plugins/convert/convert_colorspace.c: more documentation
* [r343] docs/plugins/convert-fast-debayer.sgml,
docs/plugins/convert-to-rgb8.sgml, docs/plugins/filter-gl.sgml,
docs/plugins/input-dc1394.sgml, docs/plugins/input-example.sgml,
docs/plugins/output-logger.sgml: more documentation for core
plugins
2009-03-04 ashuang
* [r341] docs/plugins/convert-colorspace.sgml,
docs/plugins/convert-fast-debayer.sgml,
docs/plugins/convert-jpeg-compress.sgml,
docs/plugins/convert-jpeg-decompress.sgml: more plugin
documentation
2009-03-03 ashuang
* [r340] docs/plugins/build/Makefile.am,
docs/plugins/camunits-plugins-docs.sgml,
docs/plugins/convert-jpeg-decompress.sgml,
docs/plugins/input-dc1394-widget.png,
docs/plugins/input-dc1394.sgml, docs/plugins/input-example.sgml,
docs/plugins/input-log.sgml, docs/plugins/input-v4l.sgml,
docs/plugins/input-v4l2-widget.png, docs/plugins/input-v4l2.sgml:
more plugin documentation
* [r338] camunits/pixels.h, configure.in, docs/Makefile.am,
docs/plugins, docs/plugins/Makefile.am, docs/plugins/build,
docs/plugins/build/Makefile.am,
docs/plugins/camunits-plugins-docs.sgml,
docs/plugins/convert-colorspace.sgml,
docs/plugins/convert-fast-debayer.sgml,
docs/plugins/convert-jpeg-compress.sgml,
docs/plugins/convert-jpeg-decompress.sgml,
docs/plugins/convert-to-rgb8.sgml, docs/plugins/filter-gl.sgml,
docs/plugins/input-dc1394.sgml,
docs/plugins/input-example-widget.png,
docs/plugins/input-example.sgml,
docs/plugins/input-log-widget.png, docs/plugins/input-log.sgml,
docs/plugins/input-v4l.sgml, docs/plugins/input-v4l2.sgml,
docs/plugins/output-logger-widget.png,
docs/plugins/output-logger.sgml: start plugin documentation
* [r337] camunits/Makefile.am, camunits/convert_colorspace.c,
camunits/convert_colorspace.h, camunits/convert_to_rgb8.c,
camunits/convert_to_rgb8.h, camunits/filter_fast_bayer.c,
camunits/filter_fast_bayer.h, camunits/filter_gl.c,
camunits/filter_gl.h, camunits/input_example.c,
camunits/input_example.h, camunits/input_log.c,
camunits/input_log.h, camunits/output_logger.c,
camunits/output_logger.h, camunits/unit_manager.c, configure.in,
docs/reference/libcamunits/camunits-docs.sgml,
docs/reference/libcamunits/camunits-sections.txt,
docs/reference/libcamunits/camunits.types, plugins/Makefile.am,
plugins/convert, plugins/convert/Makefile.am,
plugins/convert/convert_colorspace.c,
plugins/convert/convert_jpeg_compress.c,
plugins/convert/convert_jpeg_decompress.c,
plugins/convert/convert_to_rgb8.c,
plugins/convert/filter_fast_bayer.c, plugins/jpeg, plugins/misc,
plugins/misc/Makefile.am, plugins/misc/filter_gl.c,
plugins/misc/input_example.c, plugins/misc/input_log.c,
plugins/misc/output_logger.c: convert all remaining core units to
plugins first pass
2009-03-02 ashuang
* [r336] camunits/Makefile.am, camunits/convert_jpeg_compress.c,
camunits/convert_jpeg_compress.h,
camunits/convert_jpeg_decompress.c,
camunits/convert_jpeg_decompress.h, camunits/convert_to_rgb8.c,
camunits/input_v4l2.c, camunits/input_v4l2.h,
camunits/unit_manager.c, configure.in, plugins/Makefile.am,
plugins/jpeg, plugins/jpeg/Makefile.am,
plugins/jpeg/convert_jpeg_compress.c,
plugins/jpeg/convert_jpeg_decompress.c, plugins/v4l2,
plugins/v4l2/Makefile.am, plugins/v4l2/input_v4l2.c: move V4L2
input unit to plugin move JPEG compression, decompression units
to plugins
2009-03-01 ashuang
* [r334] camunits/Makefile.am, camunits/convert_to_rgb8.c,
camunits/convert_to_rgb8.h, camunits/unit_manager.h:
convert_to_rgb now uses IPP and Framewave plugins if they are
available added dbg.h to dist include
* [r333] camlog/camlog.c, camlog/signal_pipe.c,
camunits-gtk/gl_drawing_area.c, camunits/unit_chain.c,
camunits/unit_chain.h, camunits/unit_manager.c,
camunits/unit_manager.h, camview/camview.c,
docs/reference/libcamunits/camunits-sections.txt: convert
CamUnitManager to follow a singleton pattern removed:
cam_unit_manager_new cam_unit_chain_new_with_manager
cam_unit_chain_get_manager
added: cam_unit_manager_get_and_ref
2009-02-15 ashuang
* [r327] ChangeLog, NEWS, configure.in: camunits release 0.1.2
* [r326] camunits/framebuffer.h, camunits/log.h, camunits/pixels.h,
camunits/unit_chain.h, camunits/unit_control.h,
docs/reference/libcamunits/camunits-docs.sgml,
docs/reference/libcamunits/camunits-sections.txt,
docs/tutorial/bookinfo.sgml, docs/tutorial/subclassing.sgml,
examples/filter_example/filter_example.c,
examples/filter_example/filter_example.h,
examples/filter_example/main.c,
examples/filter_plugin/filter_plugin.c: update documentation,
examples
* [r325] camunits/Makefile.am, camunits/input_v4l.c,
camunits/input_v4l.h, camunits/log.c, camunits/pwc-ioctl.h,
camunits/unit_manager.c, configure.in,
docs/reference/libcamunits/camunits-docs.sgml,
docs/reference/libcamunits/camunits-sections.txt,
docs/reference/libcamunits/camunits.types, plugins/Makefile.am,
plugins/v4l, plugins/v4l/Makefile.am, plugins/v4l/input_v4l.c,
plugins/v4l/pwc-ioctl.h: convert CamInputV4L to plugin, do not
build by default. Must specify --with-v4l1-plugin to configure to
build
* [r324] camunits/filter_fast_bayer.c,
camunits/filter_fast_bayer.h: modify convert:fast_debayer to
handle data that's not already 16-byte aligned
2009-02-12 ashuang
* [r322] camlog/camlog.c, camview/camview.c: getopt returns int not
char
2009-01-17 ashuang
* [r314] camlog/camlog.1, camlog/camlog.c, camview/camview.1,
camview/camview.c: add --plugin-path command line option to
camview and camlog
2009-01-16 ashuang
* [r313] examples/filter_plugin/filter_plugin.c,
examples/filter_plugin/test-chain.xml: minor update to filter
plugin example
* [r312] camlog/camlog.c, camunits/plugin.c, camunits/unit_chain.c:
fix some gcc warnings
* [r311] examples/filter_plugin/build.sh,
examples/filter_plugin/filter_plugin.c: simplify filter_plugin
example
* [r309] camunits/gl_texture.c, camunits/gl_texture.h,
camunits/unit_format.h: add some const correctness to gl_texture,
fix some docs
* [r308] camunits/convert_jpeg_decompress.c: add jpeg decompress
grayscale output format
2009-01-05 ashuang
* [r305] examples/Makefile.am, examples/filter_plugin,
examples/filter_plugin/build.sh, examples/filter_plugin/clean.sh,
examples/filter_plugin/filter_plugin.c,
examples/filter_plugin/test-chain.xml,
examples/filter_plugin/test.sh: add filter_plugin example
2008-12-18 ashuang
* [r297] camlog/camlog.1: fix typo in camlog manpage
* [r296] ChangeLog, NEWS, configure.in, docs/release_checklist:
Camunits release 0.1.1
2008-12-17 ashuang
* [r295] camunits-gtk/unit_control_widget.c: unit control widget
text entry button set sensitive with control enable/disable
2008-12-14 ashuang
* [r293] docs/tutorial/subclassing.sgml: doc fixes
* [r292] docs/tutorial/subclassing.sgml: typo
2008-12-12 ashuang
* [r291] camlog/camlog.1, camlog/camlog.c,
camunits/output_logger.c, camunits/output_logger.h: shore up
logger unit and camlog change "filename" control id to
"desired-filename" add "auto-suffix-enable" control, option to
disable auto suffix on filename add -c option to camlog to load
chain file instead of just an input ID.
2008-12-08 ashuang
* [r290] camview/camview.c: missed something in last commit
* [r289] camlog/camlog.1, camlog/camlog.c, camview/camview.1,
camview/camview.c: update camview, camlog usage and documentation
2008-11-26 ashuang
* [r288] camunits/filter_gl.c, camunits/gl_texture.c,
camunits/pixels.c, camunits/pixels.h: add
CAM_PIXEL_FORMAT_LE_GRAY16, filter_gl support bugfix in
big-endian gray16 format
2008-11-25 ashuang
* [r287] camview/camview.c: tweak camview default widget sizes
* [r286] camunits/input_log.c, camunits/input_log.h: fixup includes
* [r285] camunits/input_log.c, camunits/input_log.h: add looping
controls to input_log
2008-11-24 ashuang
* [r284] camview/camview.c: add FPS display to camview
2008-11-21 ashuang
* [r283] camunits/unit_manager.c: unit_manager: don't call
cam_unit_driver_stop on a driver that did not successfully start
2008-11-18 ashuang
* [r282] camunits/pixels.c, camunits/pixels.h,
camunits/pixels_sse2.c, camunits/pixels_sse3.c: rename
IS_ALIGNEDxx macros to CAM_IS_ALIGNEDxx
2008-11-14 ashuang
* [r280] camunits-gtk/unit_control_widget.c,
camunits/unit_control.c, camview/camview.c: some bugfixes
* [r279] camunits-gtk/unit_control_widget.c,
camunits/unit_control.c, camunits/unit_control.h: fix
unit_control_widget bug (thanks markus) add better type safety to
unit_control
2008-11-11 ashuang
* [r270] ChangeLog, NEWS, configure.in: Camunits release 0.1.0
* [r269] camunits/input_v4l2.h, camunits/unit.h,
camunits/unit_manager.h,
docs/reference/libcamunits/camunits-docs.sgml,
docs/tutorial/bookinfo.sgml, docs/tutorial/camunit.sgml,
docs/tutorial/otherenvs.sgml, docs/tutorial/preface.sgml,
docs/tutorial/subclassing.sgml: Camunits is simpler and easier
than CamUnits
* [r261] ., camunits, camunits-gtk, camunits/input_v4l2.h,
camunits/unit.h, camunits/unit_manager.h,
docs/reference/libcamunits, docs/reference/libcamunits-gtk,
docs/reference/libcamunits-gtk/Makefile.am,
docs/reference/libcamunits-gtk/camunits-gtk-docs.sgml,
docs/reference/libcamunits-gtk/camunits-gtk-sections.txt,
docs/reference/libcamunits-gtk/camunits-gtk.types,
docs/reference/libcamunits-gtk/libcam-gtk-docs.sgml,
docs/reference/libcamunits-gtk/libcam-gtk-sections.txt,
docs/reference/libcamunits-gtk/libcam-gtk.types,
docs/reference/libcamunits/Makefile.am,
docs/reference/libcamunits/camunits-docs.sgml,
docs/reference/libcamunits/camunits-sections.txt,
docs/reference/libcamunits/camunits.types,
docs/reference/libcamunits/libcam-docs.sgml,
docs/reference/libcamunits/libcam-sections.txt,
docs/reference/libcamunits/libcam.types, docs/tutorial,
docs/tutorial/acquiring.sgml, docs/tutorial/bookinfo.sgml,
docs/tutorial/camunit.sgml, docs/tutorial/otherenvs.sgml,
docs/tutorial/preface.sgml, docs/tutorial/subclassing.sgml:
libcam-extra -> camunits-extra update documentation libcam ->
camunits
* [r260] camlog/Makefile.am, camunits-gtk/Makefile.am,
camunits-gtk/camunits-gtk.pc.in, camunits-gtk/libcam-gtk.pc.in,
camunits-gtk/pixmaps/Makefile.am,
camunits-gtk/unit_manager_widget.c, camunits/Makefile.am,
camunits/camunits-gmarshal.c, camunits/camunits-gmarshal.h,
camunits/camunits-gmarshal.list, camunits/camunits.pc.in,
camunits/libcam-gmarshal.c, camunits/libcam-gmarshal.h,
camunits/libcam-gmarshal.list, camunits/libcam.pc.in,
camunits/unit_manager.c, camview/Makefile.am,
docs/reference/Makefile.am, docs/reference/libcam,
docs/reference/libcam-gtk, docs/reference/libcamunits,
docs/reference/libcamunits-gtk, examples/basic/Makefile.am,
examples/basic/snapshot.c, examples/basic/trivial-acquire.c,
examples/filter_example/Makefile.am,
examples/filter_example/filter_example.c,
examples/filter_example/filter_example.h,
examples/filter_example/main.c,
examples/qt4/snapshot/CamUnitChainQtAdapter.hpp,
examples/qt4/snapshot/snapshot.cpp,
examples/qt4/snapshot/snapshot.pro, m4macros/Makefile.am,
m4macros/camunits.m4, m4macros/libcam.m4: binaries and libraries
appear to work now. documentation is stil wrong
* [r259] ChangeLog, Makefile.am, NEWS, camlog/Makefile.am,
camlog/camlog.1, camlog/camlog.c, camunits, camunits-gtk,
camunits-gtk/Makefile.am, camunits-gtk/cam-gtk.h,
camunits-gtk/libcam-gtk.pc.in,
camunits-gtk/unit_chain_gl_widget.c,
camunits-gtk/unit_chain_gl_widget.h,
camunits-gtk/unit_chain_widget.c,
camunits-gtk/unit_chain_widget.h,
camunits-gtk/unit_control_widget.c,
camunits-gtk/unit_control_widget.h,
camunits-gtk/unit_description_widget.c,
camunits-gtk/unit_description_widget.h,
camunits-gtk/unit_manager_widget.c,
camunits-gtk/unit_manager_widget.h, camunits.spec.in,
camunits/Makefile.am, camunits/cam.h, camunits/input_example.h,
camunits/input_v4l2.h, camunits/libcam-gmarshal.c,
camunits/libcam.pc.in, camunits/unit.c, camunits/unit.h,
camunits/unit_chain.c, camunits/unit_manager.h,
camview/Makefile.am, camview/camview.1, camview/camview.c,
configure.in, docs/tutorial/Makefile.am, libcam, libcam-gtk,
libcam.spec.in, plugins/dc1394/Makefile.am,
plugins/dc1394/input_dc1394.c: start renaming things from libcam
-> camunits
* [r257] NEWS, camlog/camlog.1, docs/tutorial/camunit.sgml,
libcam-gtk/unit_control_widget.c, libcam/convert_colorspace.c,
libcam/filter_gl.c, libcam/gl_texture.c, libcam/pixels.c,
libcam/pixels.h, libcam/unit_chain.c, libcam/unit_manager.c,
plugins/dc1394/input_dc1394.c: svnsync barfed at revision 256.
Here is 256:266 from libcam
------------------------------------------------------------------------
r266 | ashuang | 2008-11-10 18:50:44 -0500 (Mon, 10 Nov 2008) | 2
lines
some news
------------------------------------------------------------------------
r265 | ashuang | 2008-10-18 15:23:03 -0400 (Sat, 18 Oct 2008) | 2
lines
gl_texture support for CAM_PIXEL_FORMAT_BE_GRAY16
------------------------------------------------------------------------
r264 | ashuang | 2008-10-18 14:12:55 -0400 (Sat, 18 Oct 2008) | 3
lines
shoring up 16-bpp grayscale support. This commit breaks a
rarely-used part of the API.
------------------------------------------------------------------------
r263 | ashuang | 2008-10-10 16:03:51 -0400 (Fri, 10 Oct 2008) | 2
lines
move bumblebee2 plugin into libcam-extra
------------------------------------------------------------------------
r262 | ashuang | 2008-10-10 15:31:06 -0400 (Fri, 10 Oct 2008) | 2
lines
debian: architecture any instead of i386/amd64
------------------------------------------------------------------------
r261 | ashuang | 2008-10-10 15:30:34 -0400 (Fri, 10 Oct 2008) | 6
lines
input_dc1394: include format7 mode in output format string
filter_gl: allow gray16 unit_manager: on failure to open plugin
dir, warn in dbg instead of stderr unit_chain: store output
format name in saved XML. unit_control_widget: slightly smarter
about format changing
------------------------------------------------------------------------
r260 | ashuang | 2008-10-10 15:19:24 -0400 (Fri, 10 Oct 2008) | 2
lines
add libcam-bumblebee2
------------------------------------------------------------------------
r259 | ashuang | 2008-10-09 17:19:46 -0400 (Thu, 09 Oct 2008) | 1
line
documentation fixes
------------------------------------------------------------------------
r258 | ashuang | 2008-10-09 17:18:55 -0400 (Thu, 09 Oct 2008) | 2
lines
fortify input_dc1394
------------------------------------------------------------------------
r257 | ashuang | 2008-09-30 16:47:06 -0400 (Tue, 30 Sep 2008) | 2
lines
add snapshot plugin
2008-09-19 ashuang
* [r254] camlog/camlog.1, camview/camview.1: fix manpages
* [r253] libcam/unit.c: tweak warning message
2008-07-16 ashuang
* [r247] ChangeLog, NEWS, configure.in: release 0.0.9
2008-07-11 ashuang
* [r246] libcam-gtk/unit_manager_widget.c: unit manager widget UI
enhancements sort unit descriptions by unit name toggle expansion
of packages when package is double-clicked/activated
2008-07-04 ashuang
* [r240] libcam-gtk/unit_control_widget.c: enable spinbutton for
float unit control widget
2008-07-01 ashuang
* [r237] libcam/unit.c: warn when units produce framebuffers with
zero bytesused and timestamp fields
* [r236] docs/reference/libcam/libcam-sections.txt,
libcam/pixels.h: fix some docs
2008-06-28 ashuang
* [r235] libcam/input_log.c, libcam/pixels.c, libcam/pixels.h,
libcam/unit.c: fix accidental API change. add lcm input legacy.
2008-06-13 ashuang
* [r234] ChangeLog, NEWS, configure.in: release 0.0.8
2008-06-02 ashuang
* [r225] camview/camview.1, camview/camview.c, camview/gtk_util.c,
camview/gtk_util.h: add --no-gui option to camview
2008-05-30 ashuang
* [r224] libcam/input_example.c: fix input example timestamps
* [r220] libcam/log.c: fix thrashing for inexact log seeking (e.g.
timestamps)
2008-05-17 ashuang
* [r218] docs/tutorial/camunit.sgml: update tutorial to match
reality
2008-05-15 ashuang
* [r217] examples/qt4/snapshot/snapshot.pro: add gobject-2.0
gmodule-2.0 to pkgconfig line in qmake project file
* [r216] libcam/input_v4l.c: input_v4l was not populating
timestamp, bytesused. fixed.
* [r215] docs/tutorial/otherenvs.sgml: add note to otherenv doc
* [r214] configure.in, examples/Makefile.am, examples/qt4,
examples/qt4/Makefile.am, examples/qt4/snapshot,
examples/qt4/snapshot/CamUnitChainQtAdapter.cpp,
examples/qt4/snapshot/CamUnitChainQtAdapter.hpp,
examples/qt4/snapshot/snapshot.cpp,
examples/qt4/snapshot/snapshot.pro: add qt4 examples
2008-05-14 ashuang
* [r213] libcam/input_log.c: make input_log not blow up for strange
type conversion issue.
2008-04-17 david.moore
* [r207] ChangeLog, NEWS, configure.in, docs/release_checklist:
release 0.0.7
* [r206] libcam/unit_manager.c: Remove some cruft
2008-04-17 ashuang
* [r204] camview/Makefile.am, libcam/pixels.c: fix debayer
regression
2008-04-15 ashuang
* [r203] configure.in, libcam/Makefile.am, libcam/unit_manager.c:
add --with-plugin-extra-path as command line argument to
configure script allow multiple plugin search paths to be defined
at compile time (e.g. /usr/lib/libcam and /usr/local/lib/libcam)
2008-04-09 ashuang
* [r201] ChangeLog, NEWS, configure.in: release 0.0.6
* [r200] docs/reference/libcam/libcam-sections.txt,
libcam/unit_chain.h: update documentation
2008-04-04 david.moore
* [r198] configure.in, libcam/pixels.c: Improve the intel arch test
and add x86_64 support
2008-04-03 david.moore
* [r197] configure.in, libcam/Makefile.am, libcam/cpuid_generic.c:
Added conditional compilation of cpuid.c, etc. only on Intel
platforms
2008-04-02 ashuang
* [r195] libcam/unit_chain.c, libcam/unit_chain.h,
libcam/unit_driver.c, libcam/unit_driver.h,
libcam/unit_manager.c, libcam/unit_manager.h: add:
cam_unit_driver_get_fileno cam_unit_driver_update
cam_unit_manager_attach_glib cam_unit_manager_detach_glib
cam_unit_manager_update
2008-02-14 ashuang
* [r189] configure.in: update version numbers for 0.0.5 release
* [r188] ChangeLog, docs/reference/libcam/libcam.types: regenerated
ChangeLog with svn2cl updated libcam docs for jpeg unit renaming
* [r187] camview/camview.c: camview UI updates. add scrollbar for
chain widget, increase default width
2008-02-02 ashuang
* [r185] docs/reference/libcam/libcam-docs.sgml,
docs/reference/libcam/libcam-sections.txt, libcam/Makefile.am,
libcam/convert_jpeg_compress.c, libcam/convert_jpeg_compress.h,
libcam/convert_jpeg_decompress.c,
libcam/convert_jpeg_decompress.h, libcam/convert_to_rgb8.c,
libcam/filter_jpeg.c, libcam/filter_jpeg.h,
libcam/unit_manager.c: split filter_jpeg into jpeg_compress and
jpeg_decompress
2008-01-31 david.moore
* [r184] plugins/dc1394/input_dc1394.c: Don't treat grayscale
cameras as Bayer
2008-01-31 ashuang
* [r183] camview/camview.c, libcam/gl_texture.c,
libcam/input_v4l2.c, libcam/unit.h, libcam/unit_chain.c,
libcam/unit_chain.h: implemented cam_unit_chain_load_from_str
minor fixes to other units
2008-01-30 ashuang
* [r182] libcam/pixels.c: fix yuyv in pixel format enum
* [r181] examples, libcam/convert_colorspace.c,
libcam/gl_texture.c, libcam/input_log.c, libcam/input_v4l.c,
libcam/input_v4l2.c, libcam/pixels.c, libcam/pixels.h,
libcam/unit.c, libcam/unit_chain.c,
plugins/dc1394/input_dc1394.c: made CamPixelFormat a GType (enum)
renamed cam_pixel_format_str --> cam_pixel_format_nickname unit
chain saves name of pixelformat now instead of hex value
2008-01-29 ashuang
* [r180] camview/camview.c, libcam/unit_chain.c,
libcam/unit_chain.h: add cam_unit_chain_snapshot add "File" ->
"Save" to camview
2008-01-28 ashuang
* [r179] libcam/convert_colorspace.c, libcam/filter_gl.c,
libcam/pixels.c, libcam/pixels.h: output.gl now can render 32-bit
floating point images added gray 8u -> 32f conversion in
convert.colorspace added gray 32f -> 8u conversion in pixels.[ch]
* [r178] libcam/pixels.c, libcam/pixels.h: change
cam_pixel_convert_8u_gray_to_64f_gray so that it rescales pixels
to [0,1] add cam_pixel_convert_8u_gray_to_32f_gray,
cam_pixel_convert_8u_rgb_to_32f_gray
* [r177] configure.in, plugins/Makefile.am: fix build for moving
ladybug2 away
* [r176] libcam/unit.h, plugins/ladybug2: moved ladybug2 directory
out of trunk into plugins
2008-01-27 ashuang
* [r174] libcam-gtk/unit_chain_gl_widget.c, libcam/unit_control.h:
better commenting unit chain GL widget now sets up a default
projection and viewing matrix.
2008-01-25 ashuang
* [r171] camlog/camlog.c, camview/camview.c,
docs/tutorial/acquiring.sgml, docs/tutorial/camunit.sgml,
docs/tutorial/subclassing.sgml, examples/basic/snapshot.c,
examples/basic/trivial-acquire.c,
examples/filter_example/filter_example.h,
examples/filter_example/main.c,
libcam-gtk/unit_chain_gl_widget.c,
libcam-gtk/unit_control_widget.c, libcam/convert_to_rgb8.c,
libcam/input_log.c, libcam/input_v4l2.c, libcam/unit.c,
libcam/unit.h, libcam/unit_chain.c, libcam/unit_chain.h,
plugins/dc1394/input_dc1394.c: remove CamUnitStatus
2008-01-24 david.moore
* [r167] docs/reference/libcam/libcam-sections.txt,
libcam/input_log.c, libcam/unit_driver.c, libcam/unit_driver.h:
Eliminate search_unit_description from CamUnitDriver
2008-01-23 ashuang
* [r165] camlog/camlog.c, camview/camview.c,
examples/basic/snapshot.c, examples/basic/trivial-acquire.c,
examples/filter_example/main.c, libcam-gtk/unit_control_widget.c,
libcam/convert_to_rgb8.c, libcam/input_example.c,
libcam/input_log.c, libcam/input_v4l2.c, libcam/input_v4l2.h,
libcam/unit.c, libcam/unit.h, libcam/unit_chain.c,
libcam/unit_chain.h, plugins/dc1394/input_dc1394.c,
plugins/ladybug2/input_ladybug2.c: API trimming. remove
CAM_UNIT_STATUS_STREAMING and related functions
(cam_unit_stream_on, cam_unit_stream_off) remove
cam_unit_stream_init_any_format (instead, pass NULL to
cam_unit_stream_init) implemented parameter update for int, float
in unit control widget
2008-01-22 ashuang
* [r161] camview/camview.c, libcam-gtk/unit_control_widget.c,
libcam/input_log.c, libcam/input_log.h: add filename control to
input log. remove file->open menu item from camview
2008-01-21 ashuang
* [r155] configure.in, plugins/dc1394/Makefile.am,
plugins/dc1394/input_dc1394.c, plugins/dc1394/input_dc1394.h:
install input_dc1394.h to include/libcam/plugins
* [r149] m4macros/libcam.m4: bugfixes in libcam m4 macro
* [r146] libcam/framebuffer.c, libcam/framebuffer.h: changed
cam_framebuffer_metadata_list_keys to take const
2008-01-19 ashuang
* [r140] Makefile.am, configure.in, libcam/libcam.pc.in, m4macros,
m4macros/Makefile.am, m4macros/README, m4macros/libcam.m4: add
m4macros (untested)
2008-01-17 ashuang
* [r139] libcam/input_v4l2.c, libcam/pixels.c: fix potential
segfault in v4l2 cleanup change rgb -> grayscale conversion to be
more perceptually accurate dot ( <0.2125, 0.7154, 0.0721>, <R, G,
B>) instead of (R + G + B) / 3
2008-01-09 ashuang
* [r135] NEWS, configure.in: Update NEWS and configure.in for
release 0.0.4
2008-01-08 ashuang
* [r134] ChangeLog, docs/tutorial/camunit.sgml,
docs/tutorial/images, docs/tutorial/subclassing.sgml,
libcam-gtk/unit_chain_gl_widget.c: add "gl-draw-finished" signal
to CamUnitChainGLWidget minor update to tutorial update changelog
2007-12-30 ashuang
* [r131] libcam/input_log.c, libcam/log.h: input_log: implemented
advance mode control, log playback speed control. log: change
file offset fields in CamLogFrameInfo from uint64 to int64 to be
more consistent with API
* [r130] libcam/pixels.c, libcam/pixels.h, libcam/unit.c,
libcam/unit.h: added CAM_PIXEL_FORMAT_ANY, so that
cam_unit_stream_init_any_format doesn't have to take
CAM_PIXEL_FORMAT_INVALID when any format is okay.
2007-12-20 david.moore
* [r127] ChangeLog, NEWS, configure.in, docs/release_checklist:
Update NEWS and configure.in for release 0.0.3
* [r126] camview/camview.c,
docs/reference/libcam-gtk/libcam-gtk-sections.txt,
docs/reference/libcam-gtk/libcam-gtk.types,
examples/filter_example/main.c, libcam-gtk/Makefile.am,
libcam-gtk/cam-gtk.h, libcam-gtk/cam_gtk.h: Renamed cam_gtk.h to
cam-gtk.h
2007-12-18 david.moore
* [r125] examples/filter_example/main.c, libcam-gtk/Makefile.am:
Fix install location for libcam-gtk headers
* [r116] ChangeLog, NEWS, configure.in: Update NEWS/configure.in
for 0.0.2 release
* [r115] docs/reference/libcam/libcam-sections.txt,
docs/tutorial/Makefile.am, examples/filter_example/Makefile.am,
libcam/capture_raw1394.c, libcam/capture_raw1394.h: Fix tarball
problems
* [r114] Makefile.am, configure.in, examples, examples/Makefile.am,
examples/basic, examples/basic/Makefile,
examples/basic/Makefile.am, examples/filter_example,
examples/filter_example/Makefile,
examples/filter_example/Makefile.am: Added the examples/
directory to automake
* [r113] docs/reference/libcam-gtk/libcam-gtk-sections.txt,
docs/reference/libcam/libcam-sections.txt: Update the list of
functions that appear in the API documentation.
2007-12-17 david.moore
* [r112] ChangeLog, libcam/convert_colorspace.c, libcam/pixels.c,
libcam/pixels.h: Add colorspace conversion for UYVY and make
naming more consistent
2007-12-17 ashuang
* [r111] po/Makevars: add myself to copyright holders in
po/Makevars
* [r109] docs/tutorial/build-html, docs/tutorial/camunit.sgml,
docs/tutorial/subclassing.sgml: tutorial polish
2007-12-16 ashuang
* [r106] configure.in, docs/Makefile.am, docs/tutorial,
docs/tutorial/Makefile.am, docs/tutorial/acquiring.sgml,
docs/tutorial/acquiring.xml, docs/tutorial/bookinfo.sgml,
docs/tutorial/bookinfo.xml, docs/tutorial/cam_unit_chain.png,
docs/tutorial/cam_unit_manager.png,
docs/tutorial/camunit-controls.png, docs/tutorial/camunit.sgml,
docs/tutorial/camunit.xml, docs/tutorial/camview-unit-id.png,
docs/tutorial/fdl.sgml, docs/tutorial/fdl.xml,
docs/tutorial/html, docs/tutorial/images/cam_unit_chain.png,
docs/tutorial/images/cam_unit_manager.png,
docs/tutorial/images/camunit-controls.png,
docs/tutorial/images/camview-unit-id.png,
docs/tutorial/otherenvs.sgml, docs/tutorial/otherenvs.xml,
docs/tutorial/preface.sgml, docs/tutorial/preface.xml,
docs/tutorial/subclassing.sgml, docs/tutorial/subclassing.xml,
docs/tutorial/tutorial.sgml, docs/tutorial/tutorial.xml: modified
tutorial to use gtk-doc.
* [r105] docs/tutorial/subclassing.xml: tutorial work
* [r104] libcam/filter_gl.c: trimming code in filter_gl, no
functionality changes
* [r103] docs/tutorial/images/cam_unit_chain.png,
docs/tutorial/images/cam_unit_manager.png,
docs/tutorial/subclassing.xml: more tutorial work
2007-12-15 ashuang
* [r102] docs/tutorial/subclassing.xml, docs/tutorial/tutorial.xml,
examples/filter_example/filter_example.c: more tutorial work
* [r101] examples/filter_example/filter_example.c: better
commenting for filter_example
* [r100] examples/filter_example,
examples/filter_example/filter_example.c,
examples/filter_example/filter_example.h,
examples/filter_example/main.c: renames in filter_example. change
namespace to "My"
2007-12-15 david.moore
* [r99] ChangeLog, plugins/dc1394/input_dc1394.c: Add non-format7
modes to input_dc1394
2007-12-14 ashuang
* [r98] docs/tutorial/acquiring.xml,
docs/tutorial/fundamentals.xml, docs/tutorial/subclassing.xml,
docs/tutorial/tutorial.xml, examples/Makefile, examples/basic,
examples/basic/Makefile, examples/basic/snapshot.c,
examples/basic/trivial-acquire.c, examples/filter_example,
examples/filter_example/Makefile,
examples/filter_example/filter_example.c,
examples/filter_example/filter_example.h,
examples/filter_example/main.c, examples/snapshot.c,
examples/trivial-acquire.c, libcam-gtk/Makefile.am: added
unit_description_widget.h and cam_tree_store.h to exported header
files started tutorial chapter on implementing custom units added
filter_example to examples moved examples/snapshot.c and
examples/trivial-acquire.c into examples/basic
2007-12-14 david.moore
* [r97] ChangeLog, configure.in, plugins/dc1394/input_dc1394.c,
plugins/dc1394/input_dc1394.h: Update input_dc1394 to use version
2.0.0-rc9 of libdc1394
2007-12-14 ashuang
* [r95] docs/reference/libcam/libcam-docs.sgml,
docs/reference/libcam/libcam-sections.txt,
libcam/convert_colorspace.h, libcam/convert_to_rgb8.h,
libcam/filter_fast_bayer.h, libcam/filter_gl.h,
libcam/filter_jpeg.h, libcam/input_log.h, libcam/input_v4l.h,
libcam/input_v4l2.h, libcam/output_logger.h, libcam/unit.h,
libcam/unit_manager.c, libcam/unit_manager.h: more documentation
* [r94] libcam/unit_chain.h, libcam/unit_manager.h: update
documentation
* [r93] libcam/plugin.c, libcam/plugin.h, libcam/unit_manager.c,
libcam/unit_manager.h: rename cam_plugin_load_plugins to
cam_unit_manager_add_plugin_dir
cam_unit_manager_register_core_drivers now searches all
directories specified in colon separated LIBCAM_PLUGIN_PATH
environment variable for plugins.
* [r92] libcam/filter_jpeg.c: install jpeg error_exit handler so
that libcam programs don't abort on bad jpeg data
* [r91] libcam/unit.c, libcam/unit_chain.c: modify
cam_unit_stream_init_any_format to prefer higher resolutions