2004-11-08 Rohan Drape * help/jack.scope.scm: Create file and copy from sw-01 example file, which is obsoleted. 2004-11-04 Rohan Drape * jack.scope.1: Edit to exclude deleted options. * jack.scope.c: Edit to clarify relation of drawing process to host process. There is now a clear separation and drawing processes could be loaded dynamically. This makes initial options for drawing parameters conceptually unclear and they are deleted. 2004-11-03 Rohan Drape * common/osc.h: Edit to use uint8_t instead of char for packet data type. 2004-10-05 Rohan Drape * jack.scope.c: Implement jackscope_print for debugging. * common/signal-interpolate.c: Merge fix from sw-25. 2004-10-04 Rohan Drape * common/print.h: Add file from common. 2004-04-19 Rohan Drape * configure.ac: Update use of AM_INIT_AUTOMAKE and AM_CFLAGS. * common: Create directory and move common files here. 2004-03-24 Rohan Drape * jack.scope.c: Fix appalling error in `jackscope_process'. The data_location value is copied to a local counter k for the iteration, the stored value was being used as the offset to copy data to the shared space. This masked an error in the copier. The result was a subtle to fix error, it was noticed when the scope was first written but not fixed since the obvious fix made the scope crash. * dsp.c: Fix appalling error in `signal_copy_circular'. `src' and `dst' are FLOAT pointers so the offset values must be units not bytes. This was obscured by an error in `jackscope_process' that meant `s' was always zero. 2004-03-04 Rohan Drape * jack.scope.1: Add REFERENCES section with correlation trace reference. This was given in the ANNOUNCE message, but not in the manual page. 2004-01-29 Rohan Drape * jack.scope.c: Incorporate signal handling fixes. 2004-01-25 Rohan Drape * jack.scope.c: Implement proper signal handling. * signal.c: Import file from common. * dsp.c: Rename file from signal.c. All procedures have the same name. 2004-01-23 Rohan Drape * jack.scope.c: Update to use osc_parse_message for incoming message parsing. * osc.c: Update from common. See TN-16 for write up. 2004-01-19 Rohan Drape * configure.ac: Add endian check required by byte-order.c. * byte-order.c: Update from common for error corrections. 2004-01-17 Rohan Drape * byte-order.c: Import common file and delete section from network.c. * jack.scope.c: Fixes to use new byte-code procedures. * draw-embed.c: Add test for zero increment to jackscope_draw_embed_data. 2004-01-15 Rohan Drape * jack.scope.1: Fix introductory paragraph. 2004-01-15 Rohan Drape * jack.scope.1: Update and add table of OSC commands. * osc.c: Add support for strings and byte string types. * signal.c: Fix error introduced at _safe variant. 2004-01-15 Rohan Drape * jack.scope.c: Initial OSC reader implementation. * jack.scope.1: Add note about -f option. 2004-01-13 Rohan Drape * jack.scope.c: Fix to use uint8_t as the pixel type, char is a signed type. 2004-01-12 Rohan Drape * jack.scope.1: Document changes to timing mechansim. * time.c: Delete file. * img.c: Fix typo in PPM output. * jack.scope.c: Add support for storing the sequence of images as PPM data files. * img.c: Write ppm file ouput. * jack.scope.c: Fix to have the draw thread timer operate using a frame interval managed by JACK. 2004-01-11 Rohan Drape * signal.c: Fix to use memcpy rather than a loop. * ximg.c: Add hints so that ratpoison does not resize the window and puts it in the centre of the screen. * img.c: Create file and implement basic drawing utilities. * jack.scope.c: Create file and implement single channel scope. * ximg.c: Create file and implement simple image display. This is derived from xdpy.c but is much simpler.