summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn <martijnvdc@gmail.com>2013-10-27 00:19:44 +0200
committerMartijn <martijnvdc@gmail.com>2013-10-27 00:19:44 +0200
commit3116336b836b73fa9ec1d8b3f8dc2c299f586801 (patch)
tree3fdc4becb5dc6414971193718280658063dd5956
parent05a5184dc028789625831d2fd929759ea74846fb (diff)
Small changes to A/V
-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;