VLCPlaybackController+MediaLibrary.h 722 B

123456789101112131415161718192021
  1. /*****************************************************************************
  2. * VLCPlaybackController+MediaLibrary.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2015-2019 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Carola Nitz <caro #videolan.org>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import "VLCPlaybackController.h"
  13. @class VLCMLMedia;
  14. @interface VLCPlaybackController (MediaLibrary)
  15. - (void)playMedia:(VLCMLMedia *)media;
  16. - (void)playMediaAtIndex:(NSInteger)index fromCollection:(NSArray<VLCMLMedia *> *)collection;
  17. @end