I'm programming C++ on Panasonic Camera. I sent a request to camera to retrieve audio captured by using camera’s microphone. Data is returned from camera has format as follows:
"HTTP/1.0 200 OK\r\n"
"Content-type: multipart/x-mixed-re place;boundary=--myboundary\r\n"
"\r\n"
"--myboundary\r\n"
"x-Control=Idle\r\n"
"x-Permission=Output:Enable;Input:Disable\r\n"
"Content-Type: audio/g726-mixed\r\n"
"Content-Length: 2048\r\n\r\n"
(data)
"\r\n"
(Data) is encoded in standard G.726. I need a C++ opensource library to decode G.726 and play back data after decoding. If someone knows then please show me.