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"
This commit is contained in:
rayslava 2013-10-14 11:01:54 +04:00
parent a81b708eb5
commit f9391e5252
2 changed files with 6 additions and 6 deletions

View File

@ -43,8 +43,8 @@
#include "toxmsi.h"
#include "toxmsi_message.h"
#include "toxrtp_message.h"
#include "toxrtp/tests/test_helper.h"
#include "../toxrtp/toxrtp_message.h"
#include "../toxrtp/tests/test_helper.h"
#include "phone.h"
#include "AV_codec.h"
@ -820,4 +820,4 @@ void *decode_audio_thread(void *arg)
alcCloseDevice(dev);
pthread_mutex_unlock(&cs->avcodec_mutex_lock);
pthread_exit ( NULL );
}
}

View File

@ -35,8 +35,8 @@
#include <pthread.h>
#include <AL/al.h>
#include <AL/alc.h>
#include "toxrtp.h"
#include "tox.h"
#include "../toxrtp/toxrtp.h"
#include "../toxcore/tox.h"
#include <SDL.h>
#include <opus/opus.h>
@ -165,4 +165,4 @@ int handle_rtp_video_packet(codec_state *cs, rtp_msg_t *r_msg);
void *decode_video_thread(void *arg);
void *decode_audio_thread(void *arg);
#endif
#endif