NEWS 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. Changes in ufodecode 0.2.2
  2. ==========================
  3. This is a bugfix release:
  4. - Fix 10 bit decoding that shows wrong output when ADCs are almost saturated
  5. - Fix 12 bit decoding that capped some output channels at 10 bits
  6. - `ipedec` returns error code different from 0 when an error occurred
  7. - `ipedec` reports the frame rate again with the `--frame-rate` switch set
  8. Changes in ufodecode 0.2.1
  9. ==========================
  10. This is a bugfix release:
  11. - Fix 12 bit decoding according to CMOSIS specs
  12. - Fix command line input of `ipedec`
  13. - Truncate so-Version to major.minor
  14. Changes in ufodecode 0.2.0
  15. ==========================
  16. Name change
  17. -----------
  18. In accordance to the rest of the software, the type names changed from
  19. `ufo_decoder_t` to `UfoDecoder`. Moreover there is no typedef for pointers to
  20. `UfoDecoder` structures.
  21. API breakage
  22. ------------
  23. To simplify debugging, all status data is passed from the decoded frame to the
  24. caller of `ufo_decoder_decode_frame()` and `ufo_decoder_get_next_frame()` by
  25. means of the new `UfoDecoderMeta` structure as defined in `ufodecode.h`.
  26. Minor changes
  27. -------------
  28. - The decoder supports version 4 and 5 of the UFO camera frame format.
  29. - `ipedec` now has a proper command line interface.
  30. - `ipedec` prints the frame meta data when using the verbose command line switch
  31. (`-v` or `--verbose`).