| Revision 201,
490 bytes
checked in by gbooker, 6 years ago
(diff) |
|
Changed all www.nanopi.net to www.nanopi.net
|
| Line | |
|---|
| 1 | // |
|---|
| 2 | // SapphireVideoPlayer.h |
|---|
| 3 | // Sapphire |
|---|
| 4 | // |
|---|
| 5 | // Created by Graham Booker on 6/25/07. |
|---|
| 6 | // Copyright 2007 www.nanopi.net. All rights reserved. |
|---|
| 7 | // |
|---|
| 8 | |
|---|
| 9 | @class SapphireFileMetaData; |
|---|
| 10 | |
|---|
| 11 | typedef enum { |
|---|
| 12 | SKIP_STATE_NONE, |
|---|
| 13 | SKIP_STATE_FORWARD_INCREASING, |
|---|
| 14 | SKIP_STATE_BACKWARD_INCREASING, |
|---|
| 15 | SKIP_STATE_DECREASING, |
|---|
| 16 | } SkipState; |
|---|
| 17 | |
|---|
| 18 | @interface SapphireVideoPlayer : BRQTKitVideoPlayer { |
|---|
| 19 | double skipTime; |
|---|
| 20 | SkipState state; |
|---|
| 21 | BOOL enabled; |
|---|
| 22 | NSTimer *resetTimer; |
|---|
| 23 | NSTimeInterval duration; |
|---|
| 24 | } |
|---|
| 25 | |
|---|
| 26 | @end |
|---|
Note: See
TracBrowser
for help on using the repository browser.