summaryrefslogtreecommitdiff
path: root/toxmsi/AV_codec.c
diff options
context:
space:
mode:
authorrayslava <rayslava@gmail.com>2013-10-14 11:01:54 +0400
committerrayslava <rayslava@gmail.com>2013-10-14 11:01:54 +0400
commitf9391e5252dcd74100177a03b435742cef8adfe0 (patch)
tree915131f46dda0f5a51fd72458895e5f80357ac8a /toxmsi/AV_codec.c
parenta81b708eb57f53e5b051c5510cc2db03fdf16315 (diff)
Toxmsi build fix
Build failed on toxmsi building with ../toxmsi/AV_codec.c:46:28: fatal error: toxrtp_message.h: No such file or directory #include "toxrtp_message.h"
Diffstat (limited to 'toxmsi/AV_codec.c')
-rw-r--r--toxmsi/AV_codec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/toxmsi/AV_codec.c b/toxmsi/AV_codec.c
index 6730dca9..82e6a320 100644
--- a/toxmsi/AV_codec.c
+++ b/toxmsi/AV_codec.c
@@ -43,8 +43,8 @@
43 43
44#include "toxmsi.h" 44#include "toxmsi.h"
45#include "toxmsi_message.h" 45#include "toxmsi_message.h"
46#include "toxrtp_message.h" 46#include "../toxrtp/toxrtp_message.h"
47#include "toxrtp/tests/test_helper.h" 47#include "../toxrtp/tests/test_helper.h"
48#include "phone.h" 48#include "phone.h"
49#include "AV_codec.h" 49#include "AV_codec.h"
50 50
@@ -820,4 +820,4 @@ void *decode_audio_thread(void *arg)
820 alcCloseDevice(dev); 820 alcCloseDevice(dev);
821 pthread_mutex_unlock(&cs->avcodec_mutex_lock); 821 pthread_mutex_unlock(&cs->avcodec_mutex_lock);
822 pthread_exit ( NULL ); 822 pthread_exit ( NULL );
823} \ No newline at end of file 823}