diff options
author | Matthias Ringwald <mringwal@inf.ethz.ch> | 2008-03-06 22:01:03 +0000 |
---|---|---|
committer | Matthias Ringwald <mringwal@inf.ethz.ch> | 2008-03-06 22:01:03 +0000 |
commit | 3d745bde9e0ad2f3097f3934562c85093eeaa2ff (patch) | |
tree | 61839e715f0b12e40307793bdc54c883b4966c1b | |
parent | e6f87e34ee65c805bde5805f89ac362095e9df4c (diff) | |
download | xine-lib-3d745bde9e0ad2f3097f3934562c85093eeaa2ff.tar.gz xine-lib-3d745bde9e0ad2f3097f3934562c85093eeaa2ff.tar.bz2 |
Fix compilation of video_macosx.m
video_macosx.m was not update to specify <xine/..> includes and
default_video_driver_class was not renamed to
default_video_driver_class_dispose
-rw-r--r-- | src/video_out/video_out_macosx.m | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/video_out/video_out_macosx.m b/src/video_out/video_out_macosx.m index 9c65d579d..70cffaeb8 100644 --- a/src/video_out/video_out_macosx.m +++ b/src/video_out/video_out_macosx.m @@ -36,11 +36,11 @@ #define LOG */ -#include "video_out.h" -#include "vo_scale.h" #include "xine.h" -#include "xine_internal.h" -#include "xineutils.h" +#include "xine/video_out.h" +#include "xine/vo_scale.h" +#include "xine/xine_internal.h" +#include "xine/xineutils.h" #include "macosx/video_window.h" @@ -358,7 +358,7 @@ static void *init_class (xine_t *xine, void *visual) { this->driver_class.open_plugin = open_plugin; this->driver_class.identifier = "MacOSX"; this->driver_class.description = N_("xine video output plugin for Mac OS X"); - this->driver_class.dispose = default_video_driver_class; + this->driver_class.dispose = default_video_driver_class_dispose; this->config = xine->config; this->xine = xine; |