Wireshark-commits: [Wireshark-commits] master 0fb3887: L16_mono: Add L16 monaural codec plugin as f

From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Wed, 28 Feb 2018 12:04:48 +0000
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=0fb38879af867b147d2ad73616f0c0ec08a0fc92
Submitter: Anders Broman (a.broman58@xxxxxxxxx)
Changed: branch: master
Repository: wireshark

Commits:

0fb3887 by Jaap Keuter (jaap.keuter@xxxxxxxxx):

    L16_mono: Add L16 monaural codec plugin as functional example
    
    This codec plugin serves a dual purpose.
    First it is to add L16 codec suppport to Wireshark.
    Second it is an illustration of a basic codec plugin module.
    
    Change-Id: I64394dab3257ae49dece0257b16cd969503918e2
    Reviewed-on: https://code.wireshark.org/review/26131
    Reviewed-by: Jaap Keuter <jaap.keuter@xxxxxxxxx>
    Petri-Dish: Jaap Keuter <jaap.keuter@xxxxxxxxx>
    Tested-by: Petri Dish Buildbot
    Reviewed-by: Anders Broman <a.broman58@xxxxxxxxx>
    

Actions performed:

    from  b405a9f   rrc: remove unused function.
    adds  0fb3887   L16_mono: Add L16 monaural codec plugin as functional example


Summary of changes:
 CMakeLists.txt                                     |  1 +
 configure.ac                                       |  1 +
 debian/libwscodecs0.install                        |  1 +
 packaging/nsis/wireshark.nsi                       |  6 ++
 plugins/Makefile.am                                |  3 +-
 .../{wiretap/usbdump => codecs/l16_mono}/AUTHORS   |  0
 .../usbdump => codecs/l16_mono}/CMakeLists.txt     | 28 ++++----
 .../usbdump => codecs/l16_mono}/Makefile.am        | 20 +++---
 plugins/codecs/l16_mono/README                     |  3 +
 plugins/codecs/l16_mono/l16decode.c                | 83 ++++++++++++++++++++++
 tools/make-plugin-reg.py                           | 28 ++++++--
 11 files changed, 142 insertions(+), 32 deletions(-)
 copy plugins/{wiretap/usbdump => codecs/l16_mono}/AUTHORS (100%)
 copy plugins/{wiretap/usbdump => codecs/l16_mono}/CMakeLists.txt (68%)
 copy plugins/{wiretap/usbdump => codecs/l16_mono}/Makefile.am (58%)
 create mode 100644 plugins/codecs/l16_mono/README
 create mode 100644 plugins/codecs/l16_mono/l16decode.c