1. 15 Mar, 2011 3 commits
  2. 23 Feb, 2011 4 commits
  3. 16 Feb, 2011 5 commits
  4. 14 Feb, 2011 3 commits
  5. 10 Feb, 2011 3 commits
  6. 07 Feb, 2011 9 commits
  7. 03 Feb, 2011 6 commits
  8. 02 Feb, 2011 3 commits
    • Jean-Paul Saman's avatar
      src/descriptors: doxygen documentation fixes. · 52d1a27c
      Jean-Paul Saman authored
      Fix not document functions and wrongly documented functions.
      52d1a27c
    • Jean-Paul Saman's avatar
      src/tables: Documentation fixes · bddf441f
      Jean-Paul Saman authored
      Correct function definitions in doxygen blocks.
      bddf441f
    • Jean-Paul Saman's avatar
      src/tables/*: Privatize dvbpsi_decoder_t in dvbpsi_t · 19a31474
      Jean-Paul Saman authored
      All dvbpsi decoders now use dvbpsi_t as handle instead of
      dvbpsi_decoder_t *. The pointer to dvbpsi_decoder_t is privatized
      and accessible through (dvbpsi_t *)->p_private member. The user
      must make sure to cast it to the correct dvbpsi_*_decoder_t type
      before accessing structure members.
      
      Dvbpsi decoder developers should use the define DVBPSI_DECODER_COMMON
      at the start of a new dvbpsi_*_decoder_t.
      
      WARNING: THIS COMMIT BREAKS THE EXISTING API IN A MAJOR WAY !!!
      
      - most public APIs requires a pointer to existing dvbpsi_t
      - new functions to obtain and delete a pointer to dvbpsi_t structure:
        dvbpsi_NewHandle() and dvbpsi_DeleteHandle()
      - subtable descriptors fixes
      - indentations
      19a31474
  9. 20 Jan, 2011 2 commits
    • Jean-Paul Saman's avatar
      src/descriptors/*: Remove dvbpsi_error() · f6de3f79
      Jean-Paul Saman authored
      The descriptor structs have no reference to dvbpsi_h handle, so using
      the dvbpsi_message_cb is currently impossible. Therefor remove the
      dvbpsi_error() messages for now.
      f6de3f79
    • Jean-Paul Saman's avatar
      src/tables/*: replace DVBPSI_ERROR with dvbpsi_error · 72c8e6fa
      Jean-Paul Saman authored
      Follow up of commit id: 1f223e37
      
      Use a message callback of dvbpsi_h instead of printf. The decoder
      table functions all use a decoder_t. In dvbpsi.h a decoder_t * is
      typedefed as dvbpsi_h.
      Table encoder (or generators) do not use a dvbpsi_h handle. The
      DVBPSI_{ERROR,DEBUG} have been disabled in these functions for now.
      
      The descriptors will be done in another commit.
      72c8e6fa
  10. 14 Jan, 2011 2 commits
    • Jean-Paul Saman's avatar
      unify error, debug and warning messages · 1f223e37
      Jean-Paul Saman authored
      Libdvbpsi used printf and fprintf to return debug and error information to the caller.
      This bypasses any logging mechanism the calling application uses and does not take
      multi-threaded applications into account.
      The unifying of messages (error, debug or warning) allows a calling application to
      filter (message level: -1, 0, 1 or 2) and handle the messages in its own way.
      1f223e37
    • Jean-Paul Saman's avatar
      configure.ac: buildsystem · d4a47c1f
      Jean-Paul Saman authored
      - add --std=gnu99
      - add -D_GNU_SOURCE
      - remove DEBUG define in preparation of message callback.
      d4a47c1f