Wireshark-commits: [Wireshark-commits] rev 53676: / /trunk/codecs/G722/: G722decode.c G722decode.h

Date: Sat, 30 Nov 2013 15:42:14 GMT
http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=53676

User: mmann
Date: 2013/11/30 03:42 PM

Log:
 Add G.722, G.726 and SBC codecs.  G.722 and G.726 are from bug 5619 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5619) and SBC is from bug 7893 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7893).
 
 Codecs are added, but (intentionally) not hooked to the RTP player as a "more generic architecture" is desired.  There are some discussions in bug 7893 on how to do this.  One thing to add would be how to handle codecs that may not be supported on all platforms.  Should the codec not be "registered" at all (with a #define over the whole module) or should it's register functions be stubbed (with a #define in each function that requires a non-supported library)

Directory: /trunk/codecs/G722/
  Changes    Path            Action
  +53 -0     G722decode.c    Added
  +34 -0     G722decode.h    Added

Directory: /trunk/codecs/G726/
  Changes    Path            Action
  +59 -0     G726decode.c    Added
  +34 -0     G726decode.h    Added

Directory: /trunk/codecs/SBC/
  Changes    Path          Action
  +136 -0    sbc.c         Added
  +37 -0     sbc.h         Added

Directory: /trunk/codecs/
  Changes    Path              Action
  +3 -0      CMakeLists.txt    Modified
  +8 -2      Makefile.am       Modified
  +17 -2     Makefile.nmake    Modified