summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-10-26 23:17:34 -0400
committerirungentoo <irungentoo@gmail.com>2013-10-26 23:17:34 -0400
commit937dbd3a7ab00755096b69c106d5f7655e9752d9 (patch)
tree5bf15c9c8ae913b3137ee44d10e13d31aab6ec6e
parentf7040726a18a210f8330f00c0d23d1ca6a303d03 (diff)
parent8acdb7cf8de967c4cecfa011607694d2261e5e3e (diff)
Merge branch 'master' of https://github.com/irungentoo/ProjectTox-Core
-rw-r--r--toxmsi/AV_codec.c6
-rw-r--r--toxmsi/AV_codec.h4
2 files changed, 6 insertions, 4 deletions
diff --git a/toxmsi/AV_codec.c b/toxmsi/AV_codec.c
index 82e6a320..8a50c894 100644
--- a/toxmsi/AV_codec.c
+++ b/toxmsi/AV_codec.c
@@ -36,8 +36,8 @@
36#include <libavutil/opt.h> 36#include <libavutil/opt.h>
37#include <AL/al.h> 37#include <AL/al.h>
38#include <AL/alc.h> 38#include <AL/alc.h>
39#include <SDL.h> 39#include <SDL/SDL.h>
40#include <SDL_thread.h> 40#include <SDL/SDL_thread.h>
41#include <pthread.h> 41#include <pthread.h>
42#include <opus/opus.h> 42#include <opus/opus.h>
43 43
@@ -48,6 +48,8 @@
48#include "phone.h" 48#include "phone.h"
49#include "AV_codec.h" 49#include "AV_codec.h"
50 50
51SDL_Surface *screen;
52
51int display_received_frame(codec_state *cs, AVFrame *r_video_frame) 53int display_received_frame(codec_state *cs, AVFrame *r_video_frame)
52{ 54{
53 AVPicture pict; 55 AVPicture pict;
diff --git a/toxmsi/AV_codec.h b/toxmsi/AV_codec.h
index 641cf486..bf5951d2 100644
--- a/toxmsi/AV_codec.h
+++ b/toxmsi/AV_codec.h
@@ -38,7 +38,7 @@
38#include "../toxrtp/toxrtp.h" 38#include "../toxrtp/toxrtp.h"
39#include "../toxcore/tox.h" 39#include "../toxcore/tox.h"
40 40
41#include <SDL.h> 41#include <SDL/SDL.h>
42#include <opus/opus.h> 42#include <opus/opus.h>
43 43
44/* ffmpeg VP8 codec ID */ 44/* ffmpeg VP8 codec ID */
@@ -75,7 +75,7 @@
75#define DEFAULT_WEBCAM "0" 75#define DEFAULT_WEBCAM "0"
76#endif 76#endif
77 77
78SDL_Surface *screen; 78extern SDL_Surface *screen;
79 79
80typedef struct { 80typedef struct {
81 SDL_Overlay *bmp; 81 SDL_Overlay *bmp;