summaryrefslogtreecommitdiffstats
path: root/src/AACDecoder.cpp
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2017-12-11 14:17:06 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2017-12-11 14:17:06 +0100
commit8256b68e7097039acb7a5a8c1564f43cd502fd56 (patch)
treeafb59ee4aadab4114148400c0a2d2556aaab3740 /src/AACDecoder.cpp
parentb72c2ad18bae885012f5a3c583ad82c0e941bef9 (diff)
downloadODR-AudioEnc-8256b68e7097039acb7a5a8c1564f43cd502fd56.tar.gz
ODR-AudioEnc-8256b68e7097039acb7a5a8c1564f43cd502fd56.tar.bz2
ODR-AudioEnc-8256b68e7097039acb7a5a8c1564f43cd502fd56.zip
Add missing string include in AACDecoder
Diffstat (limited to 'src/AACDecoder.cpp')
-rw-r--r--src/AACDecoder.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/AACDecoder.cpp b/src/AACDecoder.cpp
index 6cbe8c4..238a801 100644
--- a/src/AACDecoder.cpp
+++ b/src/AACDecoder.cpp
@@ -21,6 +21,7 @@
#include "config.h"
#include "AACDecoder.h"
#include <stdexcept>
+#include <string>
AACDecoder::AACDecoder(const char* wavfilename) :
m_wav_writer(wavfilename)