diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/osxaudio/Makefile.am | 3 | ||||
-rw-r--r-- | sys/osxvideo/cocoawindow.h | 2 | ||||
-rw-r--r-- | sys/osxvideo/cocoawindow.m | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/sys/osxaudio/Makefile.am b/sys/osxaudio/Makefile.am index 4ea2114c..1b0e4875 100644 --- a/sys/osxaudio/Makefile.am +++ b/sys/osxaudio/Makefile.am @@ -5,7 +5,8 @@ libgstosxaudio_la_SOURCES = gstosxringbuffer.c \ gstosxaudiosink.c \ gstosxaudiosrc.c -libgstosxaudio_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) +libgstosxaudio_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \ + -Wno-deprecated-declarations libgstosxaudio_la_LIBADD = \ -lgstinterfaces-@GST_MAJORMINOR@ \ -lgstaudio-@GST_MAJORMINOR@ \ diff --git a/sys/osxvideo/cocoawindow.h b/sys/osxvideo/cocoawindow.h index 340bd160..a0a4a9a0 100644 --- a/sys/osxvideo/cocoawindow.h +++ b/sys/osxvideo/cocoawindow.h @@ -35,7 +35,7 @@ struct _GstOSXImage; @interface GstGLView : NSOpenGLView { int i_effect; - unsigned long pi_texture; + unsigned int pi_texture; float f_x; float f_y; int initDone; diff --git a/sys/osxvideo/cocoawindow.m b/sys/osxvideo/cocoawindow.m index 9b5e7b31..c90dc604 100644 --- a/sys/osxvideo/cocoawindow.m +++ b/sys/osxvideo/cocoawindow.m @@ -262,7 +262,7 @@ } - (void) drawRect:(NSRect) rect { - long params[] = { 1 }; + int params[] = { 1 }; [actualContext makeCurrentContext]; |