1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825
|
/*****************************************************************************
* ios.m: iOS OpenGL ES provider
*****************************************************************************
* Copyright (C) 2001-2017 VLC authors and VideoLAN
* $Id$
*
* Authors: Pierre d'Herbemont <pdherbemont at videolan dot org>
* Felix Paul Kühne <fkuehne at videolan dot org>
* David Fuhrmann <david dot fuhrmann at googlemail dot com>
* Rémi Denis-Courmont
* Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
* Eric Petit <titer@m0k.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
/*****************************************************************************
* Preamble
*****************************************************************************/
#import <UIKit/UIKit.h>
#import <OpenGLES/EAGL.h>
#import <OpenGLES/ES2/gl.h>
#import <OpenGLES/ES2/glext.h>
#import <QuartzCore/QuartzCore.h>
#import <dlfcn.h>
#ifdef HAVE_CONFIG_H
# import "config.h"
#endif
#import <vlc_common.h>
#import <vlc_plugin.h>
#import <vlc_vout_display.h>
#import <vlc_opengl.h>
#import <vlc_dialog.h>
#import "opengl/vout_helper.h"
/**
* Forward declarations
*/
struct picture_sys_t {
CVPixelBufferRef pixelBuffer;
};
static int Open(vlc_object_t *);
static void Close(vlc_object_t *);
static picture_pool_t* PicturePool(vout_display_t *, unsigned);
static void PictureRender(vout_display_t *, picture_t *, subpicture_t *);
static void PictureDisplay(vout_display_t *, picture_t *, subpicture_t *);
static int Control(vout_display_t*, int, va_list);
static void *OurGetProcAddress(vlc_gl_t *, const char *);
static int GLESMakeCurrent(vlc_gl_t *);
static void GLESSwap(vlc_gl_t *);
static void GLESReleaseCurrent(vlc_gl_t *);
/**
* Module declaration
*/
vlc_module_begin ()
set_shortname("iOS vout")
set_description("iOS OpenGL video output")
set_category(CAT_VIDEO)
set_subcategory(SUBCAT_VIDEO_VOUT)
set_capability("vout display", 300)
set_callbacks(Open, Close)
add_shortcut("vout_ios2", "vout_ios")
add_glopts()
vlc_module_end ()
@interface VLCOpenGLES2VideoView : UIView {
vout_display_t *_voutDisplay;
EAGLContext *_eaglContext;
CAEAGLLayer *_layer;
vlc_mutex_t _mutex;
vlc_cond_t _gl_attached_wait;
BOOL _gl_attached;
BOOL _bufferNeedReset;
BOOL _appActive;
BOOL _eaglEnabled;
BOOL _placeInvalidated;
UIView *_viewContainer;
UITapGestureRecognizer *_tapRecognizer;
/* Written from MT, read locked from vout */
vout_display_place_t _place;
CGSize _viewSize;
CGFloat _scaleFactor;
/* Written from vout, read locked from MT */
vout_display_cfg_t _cfg;
}
- (id)initWithFrame:(CGRect)frame andVD:(vout_display_t*)vd;
- (void)cleanAndRelease:(BOOL)flushed;
- (BOOL)makeCurrent:(EAGLContext **)previousEaglContext withGL:(vlc_gl_t *)gl;
- (void)releaseCurrent:(EAGLContext *)previousEaglContext;
- (void)presentRenderbuffer;
- (void)updateVoutCfg:(const vout_display_cfg_t *)cfg withVGL:(vout_display_opengl_t *)vgl;
- (void)getPlaceLocked:(vout_display_place_t *)place;
@end
struct vout_display_sys_t
{
VLCOpenGLES2VideoView *glESView;
vlc_gl_t *gl;
picture_pool_t *picturePool;
};
struct gl_sys
{
VLCOpenGLES2VideoView *glESView;
vout_display_opengl_t *vgl;
GLuint renderBuffer;
GLuint frameBuffer;
EAGLContext *previousEaglContext;
};
static void *OurGetProcAddress(vlc_gl_t *gl, const char *name)
{
VLC_UNUSED(gl);
return dlsym(RTLD_DEFAULT, name);
}
static int Open(vlc_object_t *this)
{
vout_display_t *vd = (vout_display_t *)this;
if (vout_display_IsWindowed(vd))
return VLC_EGENERIC;
vout_display_sys_t *sys = vlc_obj_calloc (this, 1, sizeof(*sys));
if (!sys)
return VLC_ENOMEM;
vd->sys = sys;
sys->picturePool = NULL;
sys->gl = NULL;
var_Create(vd->obj.parent, "ios-eaglcontext", VLC_VAR_ADDRESS);
@autoreleasepool {
/* setup the actual OpenGL ES view */
[VLCOpenGLES2VideoView performSelectorOnMainThread:@selector(getNewView:)
withObject:[NSArray arrayWithObjects:
[NSValue valueWithPointer:&sys->glESView],
[NSValue valueWithPointer:vd], nil]
waitUntilDone:YES];
if (!sys->glESView) {
msg_Err(vd, "Creating OpenGL ES 2 view failed");
var_Destroy(vd->obj.parent, "ios-eaglcontext");
return VLC_EGENERIC;
}
const vlc_fourcc_t *subpicture_chromas;
video_format_t fmt = vd->fmt;
sys->gl = vlc_object_create(this, sizeof(*sys->gl));
if (!sys->gl)
goto bailout;
struct gl_sys *glsys = sys->gl->sys =
vlc_obj_malloc(this, sizeof(struct gl_sys));
if (unlikely(!sys->gl->sys))
goto bailout;
glsys->glESView = sys->glESView;
glsys->vgl = NULL;
glsys->renderBuffer = glsys->frameBuffer = 0;
/* Initialize common OpenGL video display */
sys->gl->makeCurrent = GLESMakeCurrent;
sys->gl->releaseCurrent = GLESReleaseCurrent;
sys->gl->swap = GLESSwap;
sys->gl->getProcAddress = OurGetProcAddress;
if (vlc_gl_MakeCurrent(sys->gl) != VLC_SUCCESS)
goto bailout;
vout_display_opengl_t *vgl = vout_display_opengl_New(&vd->fmt, &subpicture_chromas,
sys->gl, &vd->cfg->viewpoint);
vlc_gl_ReleaseCurrent(sys->gl);
if (!vgl)
goto bailout;
glsys->vgl = vgl;
/* */
vout_display_info_t info = vd->info;
info.has_pictures_invalid = false;
info.subpicture_chromas = subpicture_chromas;
/* Setup vout_display_t once everything is fine */
vd->info = info;
vd->pool = PicturePool;
vd->prepare = PictureRender;
vd->display = PictureDisplay;
vd->control = Control;
return VLC_SUCCESS;
bailout:
Close(this);
return VLC_EGENERIC;
}
}
static void Close (vlc_object_t *this)
{
vout_display_t *vd = (vout_display_t *)this;
vout_display_sys_t *sys = vd->sys;
@autoreleasepool {
BOOL flushed = NO;
if (sys->gl != NULL) {
struct gl_sys *glsys = sys->gl->sys;
msg_Dbg(this, "deleting display");
if (likely(glsys->vgl))
{
int ret = vlc_gl_MakeCurrent(sys->gl);
vout_display_opengl_Delete(glsys->vgl);
if (ret == VLC_SUCCESS)
{
vlc_gl_ReleaseCurrent(sys->gl);
flushed = YES;
}
}
vlc_object_release(sys->gl);
}
[sys->glESView cleanAndRelease:flushed];
}
var_Destroy(vd->obj.parent, "ios-eaglcontext");
}
/*****************************************************************************
* vout display callbacks
*****************************************************************************/
static int Control(vout_display_t *vd, int query, va_list ap)
{
vout_display_sys_t *sys = vd->sys;
struct gl_sys *glsys = sys->gl->sys;
switch (query) {
case VOUT_DISPLAY_CHANGE_DISPLAY_FILLED:
case VOUT_DISPLAY_CHANGE_ZOOM:
case VOUT_DISPLAY_CHANGE_SOURCE_ASPECT:
case VOUT_DISPLAY_CHANGE_SOURCE_CROP:
case VOUT_DISPLAY_CHANGE_DISPLAY_SIZE:
{
const vout_display_cfg_t *cfg;
if (query == VOUT_DISPLAY_CHANGE_SOURCE_ASPECT ||
query == VOUT_DISPLAY_CHANGE_SOURCE_CROP)
cfg = vd->cfg;
else
cfg = (const vout_display_cfg_t*)va_arg(ap, const vout_display_cfg_t *);
assert(cfg);
[sys->glESView updateVoutCfg:cfg withVGL:glsys->vgl];
return VLC_SUCCESS;
}
case VOUT_DISPLAY_CHANGE_VIEWPOINT:
return vout_display_opengl_SetViewpoint(glsys->vgl,
&va_arg (ap, const vout_display_cfg_t* )->viewpoint);
case VOUT_DISPLAY_RESET_PICTURES:
vlc_assert_unreachable ();
default:
msg_Err(vd, "Unknown request %d", query);
return VLC_EGENERIC;
}
}
static void PictureDisplay(vout_display_t *vd, picture_t *pic, subpicture_t *subpicture)
{
vout_display_sys_t *sys = vd->sys;
struct gl_sys *glsys = sys->gl->sys;
if (vlc_gl_MakeCurrent(sys->gl) == VLC_SUCCESS)
{
vout_display_opengl_Display(glsys->vgl, &vd->source);
vlc_gl_ReleaseCurrent(sys->gl);
}
picture_Release(pic);
if (subpicture)
subpicture_Delete(subpicture);
}
static void PictureRender(vout_display_t *vd, picture_t *pic, subpicture_t *subpicture)
{
vout_display_sys_t *sys = vd->sys;
struct gl_sys *glsys = sys->gl->sys;
if (vlc_gl_MakeCurrent(sys->gl) == VLC_SUCCESS)
{
vout_display_opengl_Prepare(glsys->vgl, pic, subpicture);
vlc_gl_ReleaseCurrent(sys->gl);
}
}
static picture_pool_t *PicturePool(vout_display_t *vd, unsigned requested_count)
{
vout_display_sys_t *sys = vd->sys;
struct gl_sys *glsys = sys->gl->sys;
if (!sys->picturePool && vlc_gl_MakeCurrent(sys->gl) == VLC_SUCCESS)
{
sys->picturePool = vout_display_opengl_GetPool(glsys->vgl, requested_count);
vlc_gl_ReleaseCurrent(sys->gl);
}
return sys->picturePool;
}
/*****************************************************************************
* vout opengl callbacks
*****************************************************************************/
static int GLESMakeCurrent(vlc_gl_t *gl)
{
struct gl_sys *sys = gl->sys;
if (![sys->glESView makeCurrent:&sys->previousEaglContext withGL:gl])
return VLC_EGENERIC;
return VLC_SUCCESS;
}
static void GLESReleaseCurrent(vlc_gl_t *gl)
{
struct gl_sys *sys = gl->sys;
[sys->glESView releaseCurrent:sys->previousEaglContext];
}
static void GLESSwap(vlc_gl_t *gl)
{
struct gl_sys *sys = gl->sys;
[sys->glESView presentRenderbuffer];
}
/*****************************************************************************
* Our UIView object
*****************************************************************************/
@implementation VLCOpenGLES2VideoView
+ (Class)layerClass
{
return [CAEAGLLayer class];
}
+ (void)getNewView:(NSArray *)value
{
id *ret = [[value objectAtIndex:0] pointerValue];
vout_display_t *vd = [[value objectAtIndex:1] pointerValue];
*ret = [[self alloc] initWithFrame:CGRectMake(0.,0.,320.,240.) andVD:vd];
}
- (id)initWithFrame:(CGRect)frame andVD:(vout_display_t*)vd
{
_appActive = ([UIApplication sharedApplication].applicationState != UIApplicationStateBackground);
if (unlikely(!_appActive))
return nil;
self = [super initWithFrame:frame];
if (!self)
return nil;
_eaglEnabled = YES;
_bufferNeedReset = YES;
_voutDisplay = vd;
_cfg = *_voutDisplay->cfg;
vlc_mutex_init(&_mutex);
vlc_cond_init(&_gl_attached_wait);
_gl_attached = YES;
/* the following creates a new OpenGL ES context with the API version we
* need if there is already an active context created by another OpenGL
* provider we cache it and restore analog to the
* makeCurrent/releaseCurrent pattern used through-out the class */
EAGLContext *previousEaglContext = [EAGLContext currentContext];
_eaglContext = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES2];
if (unlikely(!_eaglContext)
|| unlikely(![EAGLContext setCurrentContext:_eaglContext]))
{
[_eaglContext release];
[self release];
return nil;
}
[self releaseCurrent:previousEaglContext];
/* Set "ios-eaglcontext" to be used by cvpx fitlers/glconv */
var_SetAddress(_voutDisplay->obj.parent, "ios-eaglcontext", _eaglContext);
_layer = (CAEAGLLayer *)self.layer;
_layer.drawableProperties = [NSDictionary dictionaryWithObject:kEAGLColorFormatRGBA8 forKey: kEAGLDrawablePropertyColorFormat];
_layer.opaque = YES;
self.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
if (![self fetchViewContainer])
{
[_eaglContext release];
[self release];
return nil;
}
/* */
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(applicationStateChanged:)
name:UIApplicationWillResignActiveNotification
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(applicationStateChanged:)
name:UIApplicationDidBecomeActiveNotification
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(applicationStateChanged:)
name:UIApplicationDidEnterBackgroundNotification
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(applicationStateChanged:)
name:UIApplicationWillEnterForegroundNotification
object:nil];
return self;
}
- (BOOL)fetchViewContainer
{
@try {
/* get the object we will draw into */
UIView *viewContainer = var_InheritAddress (_voutDisplay, "drawable-nsobject");
if (unlikely(viewContainer == nil)) {
msg_Err(_voutDisplay, "provided view container is nil");
return NO;
}
if (unlikely(![viewContainer respondsToSelector:@selector(isKindOfClass:)])) {
msg_Err(_voutDisplay, "void pointer not an ObjC object");
return NO;
}
[viewContainer retain];
if (![viewContainer isKindOfClass:[UIView class]]) {
msg_Err(_voutDisplay, "passed ObjC object not of class UIView");
return NO;
}
/* This will be released in Close(), on
* main thread, after we are done using it. */
_viewContainer = viewContainer;
self.frame = viewContainer.bounds;
[self reshape];
[_viewContainer addSubview:self];
/* add tap gesture recognizer for DVD menus and stuff */
if (var_InheritBool( _voutDisplay, "mouse-events" ) == false) {
return YES;
}
_tapRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self
action:@selector(tapRecognized:)];
if (_viewContainer.window
&& _viewContainer.window.rootViewController
&& _viewContainer.window.rootViewController.view)
[_viewContainer.superview addGestureRecognizer:_tapRecognizer];
_tapRecognizer.cancelsTouchesInView = NO;
return YES;
} @catch (NSException *exception) {
msg_Err(_voutDisplay, "Handling the view container failed due to an Obj-C exception (%s, %s", [exception.name UTF8String], [exception.reason UTF8String]);
vout_display_sys_t *sys = _voutDisplay->sys;
if (_tapRecognizer)
[_tapRecognizer release];
return NO;
}
}
- (void)cleanAndReleaseFromMainThread
{
[[NSNotificationCenter defaultCenter] removeObserver:self];
[_tapRecognizer.view removeGestureRecognizer:_tapRecognizer];
[_tapRecognizer release];
[self removeFromSuperview];
[_viewContainer release];
assert(!_gl_attached);
[_eaglContext release];
[self release];
}
- (void)cleanAndRelease:(BOOL)flushed
{
vlc_mutex_lock(&_mutex);
if (_eaglEnabled && !flushed)
[self flushEAGLLocked];
_voutDisplay = nil;
_eaglEnabled = NO;
vlc_mutex_unlock(&_mutex);
[self performSelectorOnMainThread:@selector(cleanAndReleaseFromMainThread)
withObject:nil
waitUntilDone:NO];
}
- (void)dealloc
{
vlc_mutex_destroy(&_mutex);
vlc_cond_destroy(&_gl_attached_wait);
[super dealloc];
}
- (void)didMoveToWindow
{
self.contentScaleFactor = self.window.screen.scale;
vlc_mutex_lock(&_mutex);
_bufferNeedReset = YES;
vlc_mutex_unlock(&_mutex);
}
- (BOOL)doResetBuffers:(vlc_gl_t *)gl
{
struct gl_sys *glsys = gl->sys;
if (glsys->frameBuffer != 0)
{
/* clear frame buffer */
glDeleteFramebuffers(1, &glsys->frameBuffer);
glsys->frameBuffer = 0;
}
if (glsys->renderBuffer != 0)
{
/* clear render buffer */
glDeleteRenderbuffers(1, &glsys->renderBuffer);
glsys->renderBuffer = 0;
}
glDisable(GL_DEPTH_TEST);
glGenFramebuffers(1, &glsys->frameBuffer);
glBindFramebuffer(GL_FRAMEBUFFER, glsys->frameBuffer);
glGenRenderbuffers(1, &glsys->renderBuffer);
glBindRenderbuffer(GL_RENDERBUFFER, glsys->renderBuffer);
[_eaglContext renderbufferStorage:GL_RENDERBUFFER fromDrawable:_layer];
glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_RENDERBUFFER, glsys->renderBuffer);
if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE)
{
msg_Err(_voutDisplay, "Failed to make complete framebuffer object %x", glCheckFramebufferStatus(GL_FRAMEBUFFER));
return NO;
}
return YES;
}
- (BOOL)makeCurrent:(EAGLContext **)previousEaglContext withGL:(vlc_gl_t *)gl
{
vlc_mutex_lock(&_mutex);
assert(!_gl_attached);
if (unlikely(!_appActive))
{
vlc_mutex_unlock(&_mutex);
return NO;
}
assert(_eaglEnabled);
*previousEaglContext = [EAGLContext currentContext];
if (![EAGLContext setCurrentContext:_eaglContext])
{
vlc_mutex_unlock(&_mutex);
return NO;
}
BOOL resetBuffers = NO;
if (gl != NULL)
{
struct gl_sys *glsys = gl->sys;
if (unlikely(_bufferNeedReset))
{
_bufferNeedReset = NO;
resetBuffers = YES;
}
if (unlikely(_placeInvalidated && glsys->vgl))
{
_placeInvalidated = NO;
vout_display_place_t place;
[self getPlaceLocked: &place];
vout_display_opengl_SetWindowAspectRatio(glsys->vgl, (float)place.width / place.height);
// x / y are top left corner, but we need the lower left one
vout_display_opengl_Viewport(glsys->vgl, _place.x, _place.y, _place.width, _place.height);
}
}
_gl_attached = YES;
vlc_mutex_unlock(&_mutex);
if (resetBuffers && ![self doResetBuffers:gl])
{
[self releaseCurrent:*previousEaglContext];
return NO;
}
return YES;
}
- (void)releaseCurrent:(EAGLContext *)previousEaglContext
{
[EAGLContext setCurrentContext:previousEaglContext];
vlc_mutex_lock(&_mutex);
assert(_gl_attached);
_gl_attached = NO;
vlc_mutex_unlock(&_mutex);
vlc_cond_signal(&_gl_attached_wait);
}
- (void)presentRenderbuffer
{
[_eaglContext presentRenderbuffer:GL_RENDERBUFFER];
}
- (void)layoutSubviews
{
[self reshape];
vlc_mutex_lock(&_mutex);
_bufferNeedReset = YES;
vlc_mutex_unlock(&_mutex);
}
- (void)getPlaceLocked:(vout_display_place_t *)place
{
assert(_voutDisplay);
vout_display_cfg_t cfg = _cfg;
cfg.display.width = _viewSize.width * _scaleFactor;
cfg.display.height = _viewSize.height * _scaleFactor;
vout_display_PlacePicture(place, &_voutDisplay->source, &cfg, false);
}
- (void)reshape
{
assert([NSThread isMainThread]);
vlc_mutex_lock(&_mutex);
if (!_voutDisplay)
{
vlc_mutex_unlock(&_mutex);
return;
}
_viewSize = [self bounds].size;
_scaleFactor = self.contentScaleFactor;
vout_display_place_t place;
[self getPlaceLocked: &place];
if (memcmp(&place, &_place, sizeof(vout_display_place_t)) != 0)
{
_placeInvalidated = YES;
_place = place;
}
vout_display_SendEventDisplaySize(_voutDisplay, _viewSize.width * _scaleFactor,
_viewSize.height * _scaleFactor);
vlc_mutex_unlock(&_mutex);
}
- (void)tapRecognized:(UITapGestureRecognizer *)tapRecognizer
{
vlc_mutex_lock(&_mutex);
if (!_voutDisplay)
{
vlc_mutex_unlock(&_mutex);
return;
}
UIGestureRecognizerState state = [tapRecognizer state];
CGPoint touchPoint = [tapRecognizer locationInView:self];
CGFloat scaleFactor = self.contentScaleFactor;
vout_display_SendMouseMovedDisplayCoordinates(_voutDisplay, ORIENT_NORMAL,
(int)touchPoint.x * scaleFactor, (int)touchPoint.y * scaleFactor,
&_place);
vout_display_SendEventMousePressed(_voutDisplay, MOUSE_BUTTON_LEFT);
vout_display_SendEventMouseReleased(_voutDisplay, MOUSE_BUTTON_LEFT);
vlc_mutex_unlock(&_mutex);
}
- (void)updateVoutCfg:(const vout_display_cfg_t *)cfg withVGL:(vout_display_opengl_t *)vgl
{
if (memcmp(&_cfg, cfg, sizeof(vout_display_cfg_t)) == 0)
return;
vlc_mutex_lock(&_mutex);
_cfg = *cfg;
vout_display_place_t place;
[self getPlaceLocked: &place];
vout_display_opengl_SetWindowAspectRatio(vgl, (float)place.width / place.height);
vlc_mutex_unlock(&_mutex);
[self performSelectorOnMainThread:@selector(setNeedsUpdateConstraints)
withObject:nil
waitUntilDone:NO];
}
- (void)flushEAGLLocked
{
assert(_eaglEnabled);
/* Ensure that all previously submitted commands are drained from the
* command buffer and are executed by OpenGL ES before moving to the
* background.*/
EAGLContext *previousEaglContext = [EAGLContext currentContext];
if ([EAGLContext setCurrentContext:_eaglContext])
{
glFinish();
glFlush();
}
[EAGLContext setCurrentContext:previousEaglContext];
}
- (void)applicationStateChanged:(NSNotification *)notification
{
vlc_mutex_lock(&_mutex);
if ([[notification name] isEqualToString:UIApplicationWillResignActiveNotification])
_appActive = NO;
else if ([[notification name] isEqualToString:UIApplicationDidEnterBackgroundNotification])
{
_appActive = NO;
/* Wait for the vout to unlock the eagl context before releasing
* it. */
while (_gl_attached && _eaglEnabled)
vlc_cond_wait(&_gl_attached_wait, &_mutex);
/* _eaglEnabled can change during the vlc_cond_wait
* as the mutex is unlocked during that, so this check
* has to be done after the vlc_cond_wait! */
if (_eaglEnabled) {
[self flushEAGLLocked];
_eaglEnabled = NO;
}
}
else if ([[notification name] isEqualToString:UIApplicationWillEnterForegroundNotification])
_eaglEnabled = YES;
else
{
assert([[notification name] isEqualToString:UIApplicationDidBecomeActiveNotification]);
_appActive = YES;
}
vlc_mutex_unlock(&_mutex);
}
- (void)updateConstraints
{
[super updateConstraints];
[self reshape];
}
- (BOOL)isOpaque
{
return YES;
}
- (BOOL)acceptsFirstResponder
{
return YES;
}
@end
|