ISeek.c revision 92b245bf8828db9e469febebbe8774c00570b5b9
1/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/* Seek implementation */
18
19#include "sles_allinclusive.h"
20
21
22static SLresult ISeek_SetPosition(SLSeekItf self, SLmillisecond pos, SLuint32 seekMode)
23{
24    SL_ENTER_INTERFACE
25
26    switch (seekMode) {
27    case SL_SEEKMODE_FAST:
28    case SL_SEEKMODE_ACCURATE:
29        {
30        // maximum position is a special value that indicates a seek is not pending
31        if (SL_TIME_UNKNOWN == pos) {
32            pos = SL_TIME_UNKNOWN - 1;
33        }
34        ISeek *thiz = (ISeek *) self;
35        interface_lock_exclusive(thiz);
36        thiz->mPos = pos;
37        // at this point the seek is merely pending, so do not yet update other fields
38        interface_unlock_exclusive_attributes(thiz, ATTR_POSITION);
39        result = SL_RESULT_SUCCESS;
40        }
41        break;
42    default:
43        result = SL_RESULT_PARAMETER_INVALID;
44        break;
45    }
46
47    SL_LEAVE_INTERFACE
48}
49
50
51static SLresult ISeek_SetLoop(SLSeekItf self, SLboolean loopEnable,
52    SLmillisecond startPos, SLmillisecond endPos)
53{
54    SL_ENTER_INTERFACE
55
56    if (!(startPos < endPos)) {
57        result = SL_RESULT_PARAMETER_INVALID;
58    } else {
59        ISeek *thiz = (ISeek *) self;
60        interface_lock_exclusive(thiz);
61#ifdef ANDROID
62        if ((startPos != 0) && (endPos != SL_TIME_UNKNOWN)) {
63            result = SL_RESULT_FEATURE_UNSUPPORTED;
64        } else {
65            switch (IObjectToObjectID((thiz)->mThis)) {
66              case SL_OBJECTID_AUDIOPLAYER: {
67                CAudioPlayer *ap = InterfaceToCAudioPlayer(thiz);
68                if (NULL != ap) {
69                    // FIXME should return a result
70                    android_audioPlayer_loop(ap, loopEnable);
71                } else {
72                    result = SL_RESULT_PARAMETER_INVALID;
73                }
74                break;
75              }
76              case XA_OBJECTID_MEDIAPLAYER: {
77                CMediaPlayer *mp = InterfaceToCMediaPlayer(thiz);
78                if (NULL != mp) {
79                    result = android_Player_loop(mp, loopEnable);
80                } else {
81                    result = SL_RESULT_PARAMETER_INVALID;
82                }
83                break;
84              }
85              default: {
86                result = SL_RESULT_PARAMETER_INVALID;
87              }
88            }
89            if (SL_RESULT_SUCCESS == result) {
90                thiz->mLoopEnabled = SL_BOOLEAN_FALSE != loopEnable; // normalize
91                // start and end positions already initialized to [0, end of stream]
92                /*thiz->mStartPos = 0;
93                  thiz->mEndPos = (SLmillisecond) SL_TIME_UNKNOWN;*/
94            }
95        }
96#else
97        thiz->mLoopEnabled = SL_BOOLEAN_FALSE != loopEnable; // normalize
98        thiz->mStartPos = startPos;
99        thiz->mEndPos = endPos;
100        result = SL_RESULT_SUCCESS;
101#endif
102        interface_unlock_exclusive(thiz);
103    }
104
105    SL_LEAVE_INTERFACE
106}
107
108
109static SLresult ISeek_GetLoop(SLSeekItf self, SLboolean *pLoopEnabled,
110    SLmillisecond *pStartPos, SLmillisecond *pEndPos)
111{
112    SL_ENTER_INTERFACE
113
114    if (NULL == pLoopEnabled || NULL == pStartPos || NULL == pEndPos) {
115        result = SL_RESULT_PARAMETER_INVALID;
116    } else {
117        ISeek *thiz = (ISeek *) self;
118        interface_lock_shared(thiz);
119        SLboolean loopEnabled = thiz->mLoopEnabled;
120        SLmillisecond startPos = thiz->mStartPos;
121        SLmillisecond endPos = thiz->mEndPos;
122        interface_unlock_shared(thiz);
123        *pLoopEnabled = loopEnabled;
124        *pStartPos = startPos;
125        *pEndPos = endPos;
126        result = SL_RESULT_SUCCESS;
127    }
128
129    SL_LEAVE_INTERFACE
130}
131
132
133static const struct SLSeekItf_ ISeek_Itf = {
134    ISeek_SetPosition,
135    ISeek_SetLoop,
136    ISeek_GetLoop
137};
138
139void ISeek_init(void *self)
140{
141    ISeek *thiz = (ISeek *) self;
142    thiz->mItf = &ISeek_Itf;
143    thiz->mPos = (SLmillisecond) SL_TIME_UNKNOWN;
144    thiz->mStartPos = (SLmillisecond) 0;
145    thiz->mEndPos = (SLmillisecond) SL_TIME_UNKNOWN;
146    thiz->mLoopEnabled = SL_BOOLEAN_FALSE;
147}
148