AwesomePlayer.cpp revision 1a49a13f20a06c2b58b97ad311a90d8eb0956052
1/*
2 * Copyright (C) 2009 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#undef DEBUG_HDCP
18
19//#define LOG_NDEBUG 0
20#define LOG_TAG "AwesomePlayer"
21#include <utils/Log.h>
22
23#include <dlfcn.h>
24
25#include "include/ARTSPController.h"
26#include "include/AwesomePlayer.h"
27#include "include/DRMExtractor.h"
28#include "include/SoftwareRenderer.h"
29#include "include/NuCachedSource2.h"
30#include "include/ThrottledSource.h"
31#include "include/MPEG2TSExtractor.h"
32#include "include/WVMExtractor.h"
33
34#include "timedtext/TimedTextPlayer.h"
35
36#include <binder/IPCThreadState.h>
37#include <binder/IServiceManager.h>
38#include <media/IMediaPlayerService.h>
39#include <media/stagefright/foundation/hexdump.h>
40#include <media/stagefright/foundation/ADebug.h>
41#include <media/stagefright/AudioPlayer.h>
42#include <media/stagefright/DataSource.h>
43#include <media/stagefright/FileSource.h>
44#include <media/stagefright/MediaBuffer.h>
45#include <media/stagefright/MediaDefs.h>
46#include <media/stagefright/MediaExtractor.h>
47#include <media/stagefright/MediaSource.h>
48#include <media/stagefright/MetaData.h>
49#include <media/stagefright/OMXCodec.h>
50
51#include <surfaceflinger/Surface.h>
52#include <gui/ISurfaceTexture.h>
53#include <gui/SurfaceTextureClient.h>
54#include <surfaceflinger/ISurfaceComposer.h>
55
56#include <media/stagefright/foundation/ALooper.h>
57#include <media/stagefright/foundation/AMessage.h>
58
59#include <cutils/properties.h>
60
61#define USE_SURFACE_ALLOC 1
62#define FRAME_DROP_FREQ 0
63
64namespace android {
65
66static int64_t kLowWaterMarkUs = 2000000ll;  // 2secs
67static int64_t kHighWaterMarkUs = 5000000ll;  // 5secs
68static int64_t kHighWaterMarkRTSPUs = 4000000ll;  // 4secs
69static const size_t kLowWaterMarkBytes = 40000;
70static const size_t kHighWaterMarkBytes = 200000;
71
72struct AwesomeEvent : public TimedEventQueue::Event {
73    AwesomeEvent(
74            AwesomePlayer *player,
75            void (AwesomePlayer::*method)())
76        : mPlayer(player),
77          mMethod(method) {
78    }
79
80protected:
81    virtual ~AwesomeEvent() {}
82
83    virtual void fire(TimedEventQueue *queue, int64_t /* now_us */) {
84        (mPlayer->*mMethod)();
85    }
86
87private:
88    AwesomePlayer *mPlayer;
89    void (AwesomePlayer::*mMethod)();
90
91    AwesomeEvent(const AwesomeEvent &);
92    AwesomeEvent &operator=(const AwesomeEvent &);
93};
94
95struct AwesomeLocalRenderer : public AwesomeRenderer {
96    AwesomeLocalRenderer(
97            const sp<ANativeWindow> &nativeWindow, const sp<MetaData> &meta)
98        : mTarget(new SoftwareRenderer(nativeWindow, meta)) {
99    }
100
101    virtual void render(MediaBuffer *buffer) {
102        render((const uint8_t *)buffer->data() + buffer->range_offset(),
103               buffer->range_length());
104    }
105
106    void render(const void *data, size_t size) {
107        mTarget->render(data, size, NULL);
108    }
109
110protected:
111    virtual ~AwesomeLocalRenderer() {
112        delete mTarget;
113        mTarget = NULL;
114    }
115
116private:
117    SoftwareRenderer *mTarget;
118
119    AwesomeLocalRenderer(const AwesomeLocalRenderer &);
120    AwesomeLocalRenderer &operator=(const AwesomeLocalRenderer &);;
121};
122
123struct AwesomeNativeWindowRenderer : public AwesomeRenderer {
124    AwesomeNativeWindowRenderer(
125            const sp<ANativeWindow> &nativeWindow,
126            int32_t rotationDegrees)
127        : mNativeWindow(nativeWindow) {
128        applyRotation(rotationDegrees);
129    }
130
131    virtual void render(MediaBuffer *buffer) {
132        int64_t timeUs;
133        CHECK(buffer->meta_data()->findInt64(kKeyTime, &timeUs));
134        native_window_set_buffers_timestamp(mNativeWindow.get(), timeUs * 1000);
135        status_t err = mNativeWindow->queueBuffer(
136                mNativeWindow.get(), buffer->graphicBuffer().get());
137        if (err != 0) {
138            LOGE("queueBuffer failed with error %s (%d)", strerror(-err),
139                    -err);
140            return;
141        }
142
143        sp<MetaData> metaData = buffer->meta_data();
144        metaData->setInt32(kKeyRendered, 1);
145    }
146
147protected:
148    virtual ~AwesomeNativeWindowRenderer() {}
149
150private:
151    sp<ANativeWindow> mNativeWindow;
152
153    void applyRotation(int32_t rotationDegrees) {
154        uint32_t transform;
155        switch (rotationDegrees) {
156            case 0: transform = 0; break;
157            case 90: transform = HAL_TRANSFORM_ROT_90; break;
158            case 180: transform = HAL_TRANSFORM_ROT_180; break;
159            case 270: transform = HAL_TRANSFORM_ROT_270; break;
160            default: transform = 0; break;
161        }
162
163        if (transform) {
164            CHECK_EQ(0, native_window_set_buffers_transform(
165                        mNativeWindow.get(), transform));
166        }
167    }
168
169    AwesomeNativeWindowRenderer(const AwesomeNativeWindowRenderer &);
170    AwesomeNativeWindowRenderer &operator=(
171            const AwesomeNativeWindowRenderer &);
172};
173
174// To collect the decoder usage
175void addBatteryData(uint32_t params) {
176    sp<IBinder> binder =
177        defaultServiceManager()->getService(String16("media.player"));
178    sp<IMediaPlayerService> service = interface_cast<IMediaPlayerService>(binder);
179    CHECK(service.get() != NULL);
180
181    service->addBatteryData(params);
182}
183
184////////////////////////////////////////////////////////////////////////////////
185AwesomePlayer::AwesomePlayer()
186    : mQueueStarted(false),
187      mUIDValid(false),
188      mTimeSource(NULL),
189      mVideoRendererIsPreview(false),
190      mAudioPlayer(NULL),
191      mDisplayWidth(0),
192      mDisplayHeight(0),
193      mFlags(0),
194      mExtractorFlags(0),
195      mVideoBuffer(NULL),
196      mDecryptHandle(NULL),
197      mLastVideoTimeUs(-1),
198      mTextPlayer(NULL) {
199    CHECK_EQ(mClient.connect(), (status_t)OK);
200
201    DataSource::RegisterDefaultSniffers();
202
203    mVideoEvent = new AwesomeEvent(this, &AwesomePlayer::onVideoEvent);
204    mVideoEventPending = false;
205    mStreamDoneEvent = new AwesomeEvent(this, &AwesomePlayer::onStreamDone);
206    mStreamDoneEventPending = false;
207    mBufferingEvent = new AwesomeEvent(this, &AwesomePlayer::onBufferingUpdate);
208    mBufferingEventPending = false;
209    mVideoLagEvent = new AwesomeEvent(this, &AwesomePlayer::onVideoLagUpdate);
210    mVideoEventPending = false;
211
212    mCheckAudioStatusEvent = new AwesomeEvent(
213            this, &AwesomePlayer::onCheckAudioStatus);
214
215    mAudioStatusEventPending = false;
216
217    reset();
218}
219
220AwesomePlayer::~AwesomePlayer() {
221    if (mQueueStarted) {
222        mQueue.stop();
223    }
224
225    reset();
226
227    mClient.disconnect();
228}
229
230void AwesomePlayer::cancelPlayerEvents(bool keepBufferingGoing) {
231    mQueue.cancelEvent(mVideoEvent->eventID());
232    mVideoEventPending = false;
233    mQueue.cancelEvent(mStreamDoneEvent->eventID());
234    mStreamDoneEventPending = false;
235    mQueue.cancelEvent(mCheckAudioStatusEvent->eventID());
236    mAudioStatusEventPending = false;
237    mQueue.cancelEvent(mVideoLagEvent->eventID());
238    mVideoLagEventPending = false;
239
240    if (!keepBufferingGoing) {
241        mQueue.cancelEvent(mBufferingEvent->eventID());
242        mBufferingEventPending = false;
243    }
244}
245
246void AwesomePlayer::setListener(const wp<MediaPlayerBase> &listener) {
247    Mutex::Autolock autoLock(mLock);
248    mListener = listener;
249}
250
251void AwesomePlayer::setUID(uid_t uid) {
252    LOGI("AwesomePlayer running on behalf of uid %d", uid);
253
254    mUID = uid;
255    mUIDValid = true;
256}
257
258status_t AwesomePlayer::setDataSource(
259        const char *uri, const KeyedVector<String8, String8> *headers) {
260    Mutex::Autolock autoLock(mLock);
261    return setDataSource_l(uri, headers);
262}
263
264status_t AwesomePlayer::setDataSource_l(
265        const char *uri, const KeyedVector<String8, String8> *headers) {
266    reset_l();
267
268    mUri = uri;
269
270    if (headers) {
271        mUriHeaders = *headers;
272
273        ssize_t index = mUriHeaders.indexOfKey(String8("x-hide-urls-from-log"));
274        if (index >= 0) {
275            // Browser is in "incognito" mode, suppress logging URLs.
276
277            // This isn't something that should be passed to the server.
278            mUriHeaders.removeItemsAt(index);
279
280            modifyFlags(INCOGNITO, SET);
281        }
282    }
283
284    if (!(mFlags & INCOGNITO)) {
285        LOGI("setDataSource_l('%s')", mUri.string());
286    } else {
287        LOGI("setDataSource_l(URL suppressed)");
288    }
289
290    // The actual work will be done during preparation in the call to
291    // ::finishSetDataSource_l to avoid blocking the calling thread in
292    // setDataSource for any significant time.
293
294    {
295        Mutex::Autolock autoLock(mStatsLock);
296        mStats.mFd = -1;
297        mStats.mURI = mUri;
298    }
299
300    return OK;
301}
302
303status_t AwesomePlayer::setDataSource(
304        int fd, int64_t offset, int64_t length) {
305    Mutex::Autolock autoLock(mLock);
306
307    reset_l();
308
309    sp<DataSource> dataSource = new FileSource(fd, offset, length);
310
311    status_t err = dataSource->initCheck();
312
313    if (err != OK) {
314        return err;
315    }
316
317    mFileSource = dataSource;
318
319    {
320        Mutex::Autolock autoLock(mStatsLock);
321        mStats.mFd = fd;
322        mStats.mURI = String8();
323    }
324
325    return setDataSource_l(dataSource);
326}
327
328status_t AwesomePlayer::setDataSource(const sp<IStreamSource> &source) {
329    return INVALID_OPERATION;
330}
331
332status_t AwesomePlayer::setDataSource_l(
333        const sp<DataSource> &dataSource) {
334    sp<MediaExtractor> extractor = MediaExtractor::Create(dataSource);
335
336    if (extractor == NULL) {
337        return UNKNOWN_ERROR;
338    }
339
340    dataSource->getDrmInfo(mDecryptHandle, &mDrmManagerClient);
341    if (mDecryptHandle != NULL) {
342        CHECK(mDrmManagerClient);
343        if (RightsStatus::RIGHTS_VALID != mDecryptHandle->status) {
344            notifyListener_l(MEDIA_ERROR, MEDIA_ERROR_UNKNOWN, ERROR_DRM_NO_LICENSE);
345        }
346    }
347
348    return setDataSource_l(extractor);
349}
350
351status_t AwesomePlayer::setDataSource_l(const sp<MediaExtractor> &extractor) {
352    // Attempt to approximate overall stream bitrate by summing all
353    // tracks' individual bitrates, if not all of them advertise bitrate,
354    // we have to fail.
355
356    int64_t totalBitRate = 0;
357
358    for (size_t i = 0; i < extractor->countTracks(); ++i) {
359        sp<MetaData> meta = extractor->getTrackMetaData(i);
360
361        int32_t bitrate;
362        if (!meta->findInt32(kKeyBitRate, &bitrate)) {
363            const char *mime;
364            CHECK(meta->findCString(kKeyMIMEType, &mime));
365            LOGW("track of type '%s' does not publish bitrate", mime);
366
367            totalBitRate = -1;
368            break;
369        }
370
371        totalBitRate += bitrate;
372    }
373
374    mBitrate = totalBitRate;
375
376    LOGV("mBitrate = %lld bits/sec", mBitrate);
377
378    {
379        Mutex::Autolock autoLock(mStatsLock);
380        mStats.mBitrate = mBitrate;
381        mStats.mTracks.clear();
382        mStats.mAudioTrackIndex = -1;
383        mStats.mVideoTrackIndex = -1;
384    }
385
386    bool haveAudio = false;
387    bool haveVideo = false;
388    for (size_t i = 0; i < extractor->countTracks(); ++i) {
389        sp<MetaData> meta = extractor->getTrackMetaData(i);
390
391        const char *mime;
392        CHECK(meta->findCString(kKeyMIMEType, &mime));
393
394        if (!haveVideo && !strncasecmp(mime, "video/", 6)) {
395            setVideoSource(extractor->getTrack(i));
396            haveVideo = true;
397
398            // Set the presentation/display size
399            int32_t displayWidth, displayHeight;
400            bool success = meta->findInt32(kKeyDisplayWidth, &displayWidth);
401            if (success) {
402                success = meta->findInt32(kKeyDisplayHeight, &displayHeight);
403            }
404            if (success) {
405                mDisplayWidth = displayWidth;
406                mDisplayHeight = displayHeight;
407            }
408
409            {
410                Mutex::Autolock autoLock(mStatsLock);
411                mStats.mVideoTrackIndex = mStats.mTracks.size();
412                mStats.mTracks.push();
413                TrackStat *stat =
414                    &mStats.mTracks.editItemAt(mStats.mVideoTrackIndex);
415                stat->mMIME = mime;
416            }
417        } else if (!haveAudio && !strncasecmp(mime, "audio/", 6)) {
418            setAudioSource(extractor->getTrack(i));
419            haveAudio = true;
420
421            {
422                Mutex::Autolock autoLock(mStatsLock);
423                mStats.mAudioTrackIndex = mStats.mTracks.size();
424                mStats.mTracks.push();
425                TrackStat *stat =
426                    &mStats.mTracks.editItemAt(mStats.mAudioTrackIndex);
427                stat->mMIME = mime;
428            }
429
430            if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_VORBIS)) {
431                // Only do this for vorbis audio, none of the other audio
432                // formats even support this ringtone specific hack and
433                // retrieving the metadata on some extractors may turn out
434                // to be very expensive.
435                sp<MetaData> fileMeta = extractor->getMetaData();
436                int32_t loop;
437                if (fileMeta != NULL
438                        && fileMeta->findInt32(kKeyAutoLoop, &loop) && loop != 0) {
439                    modifyFlags(AUTO_LOOPING, SET);
440                }
441            }
442        } else if (!strcasecmp(mime, MEDIA_MIMETYPE_TEXT_3GPP)) {
443            addTextSource(extractor->getTrack(i));
444        }
445    }
446
447    if (!haveAudio && !haveVideo) {
448        return UNKNOWN_ERROR;
449    }
450
451    mExtractorFlags = extractor->flags();
452
453    return OK;
454}
455
456void AwesomePlayer::reset() {
457    Mutex::Autolock autoLock(mLock);
458    reset_l();
459}
460
461void AwesomePlayer::reset_l() {
462    mDisplayWidth = 0;
463    mDisplayHeight = 0;
464
465    if (mDecryptHandle != NULL) {
466            mDrmManagerClient->setPlaybackStatus(mDecryptHandle,
467                    Playback::STOP, 0);
468            mDecryptHandle = NULL;
469            mDrmManagerClient = NULL;
470    }
471
472    if (mFlags & PLAYING) {
473        uint32_t params = IMediaPlayerService::kBatteryDataTrackDecoder;
474        if ((mAudioSource != NULL) && (mAudioSource != mAudioTrack)) {
475            params |= IMediaPlayerService::kBatteryDataTrackAudio;
476        }
477        if (mVideoSource != NULL) {
478            params |= IMediaPlayerService::kBatteryDataTrackVideo;
479        }
480        addBatteryData(params);
481    }
482
483    if (mFlags & PREPARING) {
484        modifyFlags(PREPARE_CANCELLED, SET);
485        if (mConnectingDataSource != NULL) {
486            LOGI("interrupting the connection process");
487            mConnectingDataSource->disconnect();
488        } else if (mConnectingRTSPController != NULL) {
489            LOGI("interrupting the connection process");
490            mConnectingRTSPController->disconnect();
491        }
492
493        if (mFlags & PREPARING_CONNECTED) {
494            // We are basically done preparing, we're just buffering
495            // enough data to start playback, we can safely interrupt that.
496            finishAsyncPrepare_l();
497        }
498    }
499
500    while (mFlags & PREPARING) {
501        mPreparedCondition.wait(mLock);
502    }
503
504    cancelPlayerEvents();
505
506    mWVMExtractor.clear();
507    mCachedSource.clear();
508    mAudioTrack.clear();
509    mVideoTrack.clear();
510
511    // Shutdown audio first, so that the respone to the reset request
512    // appears to happen instantaneously as far as the user is concerned
513    // If we did this later, audio would continue playing while we
514    // shutdown the video-related resources and the player appear to
515    // not be as responsive to a reset request.
516    if (mAudioPlayer == NULL && mAudioSource != NULL) {
517        // If we had an audio player, it would have effectively
518        // taken possession of the audio source and stopped it when
519        // _it_ is stopped. Otherwise this is still our responsibility.
520        mAudioSource->stop();
521    }
522    mAudioSource.clear();
523
524    mTimeSource = NULL;
525
526    delete mAudioPlayer;
527    mAudioPlayer = NULL;
528
529    if (mTextPlayer != NULL) {
530        delete mTextPlayer;
531        mTextPlayer = NULL;
532    }
533
534    mVideoRenderer.clear();
535
536    if (mRTSPController != NULL) {
537        mRTSPController->disconnect();
538        mRTSPController.clear();
539    }
540
541    if (mVideoSource != NULL) {
542        shutdownVideoDecoder_l();
543    }
544
545    mDurationUs = -1;
546    modifyFlags(0, ASSIGN);
547    mExtractorFlags = 0;
548    mTimeSourceDeltaUs = 0;
549    mVideoTimeUs = 0;
550
551    mSeeking = NO_SEEK;
552    mSeekNotificationSent = true;
553    mSeekTimeUs = 0;
554
555    mUri.setTo("");
556    mUriHeaders.clear();
557
558    mFileSource.clear();
559
560    mBitrate = -1;
561    mLastVideoTimeUs = -1;
562
563    {
564        Mutex::Autolock autoLock(mStatsLock);
565        mStats.mFd = -1;
566        mStats.mURI = String8();
567        mStats.mBitrate = -1;
568        mStats.mAudioTrackIndex = -1;
569        mStats.mVideoTrackIndex = -1;
570        mStats.mNumVideoFramesDecoded = 0;
571        mStats.mNumVideoFramesDropped = 0;
572        mStats.mVideoWidth = -1;
573        mStats.mVideoHeight = -1;
574        mStats.mFlags = 0;
575        mStats.mTracks.clear();
576    }
577
578    mWatchForAudioSeekComplete = false;
579    mWatchForAudioEOS = false;
580}
581
582void AwesomePlayer::notifyListener_l(int msg, int ext1, int ext2) {
583    if (mListener != NULL) {
584        sp<MediaPlayerBase> listener = mListener.promote();
585
586        if (listener != NULL) {
587            listener->sendEvent(msg, ext1, ext2);
588        }
589    }
590}
591
592bool AwesomePlayer::getBitrate(int64_t *bitrate) {
593    off64_t size;
594    if (mDurationUs >= 0 && mCachedSource != NULL
595            && mCachedSource->getSize(&size) == OK) {
596        *bitrate = size * 8000000ll / mDurationUs;  // in bits/sec
597        return true;
598    }
599
600    if (mBitrate >= 0) {
601        *bitrate = mBitrate;
602        return true;
603    }
604
605    *bitrate = 0;
606
607    return false;
608}
609
610// Returns true iff cached duration is available/applicable.
611bool AwesomePlayer::getCachedDuration_l(int64_t *durationUs, bool *eos) {
612    int64_t bitrate;
613
614    if (mRTSPController != NULL) {
615        *durationUs = mRTSPController->getQueueDurationUs(eos);
616        return true;
617    } else if (mCachedSource != NULL && getBitrate(&bitrate)) {
618        status_t finalStatus;
619        size_t cachedDataRemaining = mCachedSource->approxDataRemaining(&finalStatus);
620        *durationUs = cachedDataRemaining * 8000000ll / bitrate;
621        *eos = (finalStatus != OK);
622        return true;
623    } else if (mWVMExtractor != NULL) {
624        status_t finalStatus;
625        *durationUs = mWVMExtractor->getCachedDurationUs(&finalStatus);
626        *eos = (finalStatus != OK);
627        return true;
628    }
629
630    return false;
631}
632
633void AwesomePlayer::ensureCacheIsFetching_l() {
634    if (mCachedSource != NULL) {
635        mCachedSource->resumeFetchingIfNecessary();
636    }
637}
638
639void AwesomePlayer::onVideoLagUpdate() {
640    Mutex::Autolock autoLock(mLock);
641    if (!mVideoLagEventPending) {
642        return;
643    }
644    mVideoLagEventPending = false;
645
646    int64_t audioTimeUs = mAudioPlayer->getMediaTimeUs();
647    int64_t videoLateByUs = audioTimeUs - mVideoTimeUs;
648
649    if (!(mFlags & VIDEO_AT_EOS) && videoLateByUs > 300000ll) {
650        LOGV("video late by %lld ms.", videoLateByUs / 1000ll);
651
652        notifyListener_l(
653                MEDIA_INFO,
654                MEDIA_INFO_VIDEO_TRACK_LAGGING,
655                videoLateByUs / 1000ll);
656    }
657
658    postVideoLagEvent_l();
659}
660
661void AwesomePlayer::onBufferingUpdate() {
662    Mutex::Autolock autoLock(mLock);
663    if (!mBufferingEventPending) {
664        return;
665    }
666    mBufferingEventPending = false;
667
668    if (mCachedSource != NULL) {
669        status_t finalStatus;
670        size_t cachedDataRemaining = mCachedSource->approxDataRemaining(&finalStatus);
671        bool eos = (finalStatus != OK);
672
673        if (eos) {
674            if (finalStatus == ERROR_END_OF_STREAM) {
675                notifyListener_l(MEDIA_BUFFERING_UPDATE, 100);
676            }
677            if (mFlags & PREPARING) {
678                LOGV("cache has reached EOS, prepare is done.");
679                finishAsyncPrepare_l();
680            }
681        } else {
682            int64_t bitrate;
683            if (getBitrate(&bitrate)) {
684                size_t cachedSize = mCachedSource->cachedSize();
685                int64_t cachedDurationUs = cachedSize * 8000000ll / bitrate;
686
687                int percentage = 100.0 * (double)cachedDurationUs / mDurationUs;
688                if (percentage > 100) {
689                    percentage = 100;
690                }
691
692                notifyListener_l(MEDIA_BUFFERING_UPDATE, percentage);
693            } else {
694                // We don't know the bitrate of the stream, use absolute size
695                // limits to maintain the cache.
696
697                if ((mFlags & PLAYING) && !eos
698                        && (cachedDataRemaining < kLowWaterMarkBytes)) {
699                    LOGI("cache is running low (< %d) , pausing.",
700                         kLowWaterMarkBytes);
701                    modifyFlags(CACHE_UNDERRUN, SET);
702                    pause_l();
703                    ensureCacheIsFetching_l();
704                    sendCacheStats();
705                    notifyListener_l(MEDIA_INFO, MEDIA_INFO_BUFFERING_START);
706                } else if (eos || cachedDataRemaining > kHighWaterMarkBytes) {
707                    if (mFlags & CACHE_UNDERRUN) {
708                        LOGI("cache has filled up (> %d), resuming.",
709                             kHighWaterMarkBytes);
710                        modifyFlags(CACHE_UNDERRUN, CLEAR);
711                        play_l();
712                        notifyListener_l(MEDIA_INFO, MEDIA_INFO_BUFFERING_END);
713                    } else if (mFlags & PREPARING) {
714                        LOGV("cache has filled up (> %d), prepare is done",
715                             kHighWaterMarkBytes);
716                        finishAsyncPrepare_l();
717                    }
718                }
719            }
720        }
721    } else if (mWVMExtractor != NULL) {
722        status_t finalStatus;
723
724        int64_t cachedDurationUs
725            = mWVMExtractor->getCachedDurationUs(&finalStatus);
726
727        bool eos = (finalStatus != OK);
728
729        if (eos) {
730            if (finalStatus == ERROR_END_OF_STREAM) {
731                notifyListener_l(MEDIA_BUFFERING_UPDATE, 100);
732            }
733            if (mFlags & PREPARING) {
734                LOGV("cache has reached EOS, prepare is done.");
735                finishAsyncPrepare_l();
736            }
737        } else {
738            int percentage = 100.0 * (double)cachedDurationUs / mDurationUs;
739            if (percentage > 100) {
740                percentage = 100;
741            }
742
743            notifyListener_l(MEDIA_BUFFERING_UPDATE, percentage);
744        }
745    }
746
747    int64_t cachedDurationUs;
748    bool eos;
749    if (getCachedDuration_l(&cachedDurationUs, &eos)) {
750        LOGV("cachedDurationUs = %.2f secs, eos=%d",
751             cachedDurationUs / 1E6, eos);
752
753        int64_t highWaterMarkUs =
754            (mRTSPController != NULL) ? kHighWaterMarkRTSPUs : kHighWaterMarkUs;
755
756        if ((mFlags & PLAYING) && !eos
757                && (cachedDurationUs < kLowWaterMarkUs)) {
758            LOGI("cache is running low (%.2f secs) , pausing.",
759                 cachedDurationUs / 1E6);
760            modifyFlags(CACHE_UNDERRUN, SET);
761            pause_l();
762            ensureCacheIsFetching_l();
763            sendCacheStats();
764            notifyListener_l(MEDIA_INFO, MEDIA_INFO_BUFFERING_START);
765        } else if (eos || cachedDurationUs > highWaterMarkUs) {
766            if (mFlags & CACHE_UNDERRUN) {
767                LOGI("cache has filled up (%.2f secs), resuming.",
768                     cachedDurationUs / 1E6);
769                modifyFlags(CACHE_UNDERRUN, CLEAR);
770                play_l();
771                notifyListener_l(MEDIA_INFO, MEDIA_INFO_BUFFERING_END);
772            } else if (mFlags & PREPARING) {
773                LOGV("cache has filled up (%.2f secs), prepare is done",
774                     cachedDurationUs / 1E6);
775                finishAsyncPrepare_l();
776            }
777        }
778    }
779
780    postBufferingEvent_l();
781}
782
783void AwesomePlayer::sendCacheStats() {
784    sp<MediaPlayerBase> listener = mListener.promote();
785    if (listener != NULL && mCachedSource != NULL) {
786        int32_t kbps = 0;
787        status_t err = mCachedSource->getEstimatedBandwidthKbps(&kbps);
788        if (err == OK) {
789            listener->sendEvent(
790                MEDIA_INFO, MEDIA_INFO_NETWORK_BANDWIDTH, kbps);
791        }
792    }
793}
794
795void AwesomePlayer::onStreamDone() {
796    // Posted whenever any stream finishes playing.
797
798    Mutex::Autolock autoLock(mLock);
799    if (!mStreamDoneEventPending) {
800        return;
801    }
802    mStreamDoneEventPending = false;
803
804    if (mStreamDoneStatus != ERROR_END_OF_STREAM) {
805        LOGV("MEDIA_ERROR %d", mStreamDoneStatus);
806
807        notifyListener_l(
808                MEDIA_ERROR, MEDIA_ERROR_UNKNOWN, mStreamDoneStatus);
809
810        pause_l(true /* at eos */);
811
812        modifyFlags(AT_EOS, SET);
813        return;
814    }
815
816    const bool allDone =
817        (mVideoSource == NULL || (mFlags & VIDEO_AT_EOS))
818            && (mAudioSource == NULL || (mFlags & AUDIO_AT_EOS));
819
820    if (!allDone) {
821        return;
822    }
823
824    if ((mFlags & LOOPING)
825            || ((mFlags & AUTO_LOOPING)
826                && (mAudioSink == NULL || mAudioSink->realtime()))) {
827        // Don't AUTO_LOOP if we're being recorded, since that cannot be
828        // turned off and recording would go on indefinitely.
829
830        seekTo_l(0);
831
832        if (mVideoSource != NULL) {
833            postVideoEvent_l();
834        }
835    } else {
836        LOGV("MEDIA_PLAYBACK_COMPLETE");
837        notifyListener_l(MEDIA_PLAYBACK_COMPLETE);
838
839        pause_l(true /* at eos */);
840
841        modifyFlags(AT_EOS, SET);
842    }
843}
844
845status_t AwesomePlayer::play() {
846    Mutex::Autolock autoLock(mLock);
847
848    modifyFlags(CACHE_UNDERRUN, CLEAR);
849
850    return play_l();
851}
852
853status_t AwesomePlayer::play_l() {
854    modifyFlags(SEEK_PREVIEW, CLEAR);
855
856    if (mFlags & PLAYING) {
857        return OK;
858    }
859
860    if (!(mFlags & PREPARED)) {
861        status_t err = prepare_l();
862
863        if (err != OK) {
864            return err;
865        }
866    }
867
868    modifyFlags(PLAYING, SET);
869    modifyFlags(FIRST_FRAME, SET);
870
871    if (mDecryptHandle != NULL) {
872        int64_t position;
873        getPosition(&position);
874        mDrmManagerClient->setPlaybackStatus(mDecryptHandle,
875                Playback::START, position / 1000);
876    }
877
878    if (mAudioSource != NULL) {
879        if (mAudioPlayer == NULL) {
880            if (mAudioSink != NULL) {
881                mAudioPlayer = new AudioPlayer(mAudioSink, this);
882                mAudioPlayer->setSource(mAudioSource);
883
884                mTimeSource = mAudioPlayer;
885
886                // If there was a seek request before we ever started,
887                // honor the request now.
888                // Make sure to do this before starting the audio player
889                // to avoid a race condition.
890                seekAudioIfNecessary_l();
891            }
892        }
893
894        CHECK(!(mFlags & AUDIO_RUNNING));
895
896        if (mVideoSource == NULL) {
897            // We don't want to post an error notification at this point,
898            // the error returned from MediaPlayer::start() will suffice.
899
900            status_t err = startAudioPlayer_l(
901                    false /* sendErrorNotification */);
902
903            if (err != OK) {
904                delete mAudioPlayer;
905                mAudioPlayer = NULL;
906
907                modifyFlags((PLAYING | FIRST_FRAME), CLEAR);
908
909                if (mDecryptHandle != NULL) {
910                    mDrmManagerClient->setPlaybackStatus(
911                            mDecryptHandle, Playback::STOP, 0);
912                }
913
914                return err;
915            }
916        }
917    }
918
919    if (mTimeSource == NULL && mAudioPlayer == NULL) {
920        mTimeSource = &mSystemTimeSource;
921    }
922
923    if (mVideoSource != NULL) {
924        // Kick off video playback
925        postVideoEvent_l();
926
927        if (mAudioSource != NULL && mVideoSource != NULL) {
928            postVideoLagEvent_l();
929        }
930    }
931
932    if (mFlags & AT_EOS) {
933        // Legacy behaviour, if a stream finishes playing and then
934        // is started again, we play from the start...
935        seekTo_l(0);
936    }
937
938    uint32_t params = IMediaPlayerService::kBatteryDataCodecStarted
939        | IMediaPlayerService::kBatteryDataTrackDecoder;
940    if ((mAudioSource != NULL) && (mAudioSource != mAudioTrack)) {
941        params |= IMediaPlayerService::kBatteryDataTrackAudio;
942    }
943    if (mVideoSource != NULL) {
944        params |= IMediaPlayerService::kBatteryDataTrackVideo;
945    }
946    addBatteryData(params);
947
948    return OK;
949}
950
951status_t AwesomePlayer::startAudioPlayer_l(bool sendErrorNotification) {
952    CHECK(!(mFlags & AUDIO_RUNNING));
953
954    if (mAudioSource == NULL || mAudioPlayer == NULL) {
955        return OK;
956    }
957
958    if (!(mFlags & AUDIOPLAYER_STARTED)) {
959        modifyFlags(AUDIOPLAYER_STARTED, SET);
960
961        bool wasSeeking = mAudioPlayer->isSeeking();
962
963        // We've already started the MediaSource in order to enable
964        // the prefetcher to read its data.
965        status_t err = mAudioPlayer->start(
966                true /* sourceAlreadyStarted */);
967
968        if (err != OK) {
969            if (sendErrorNotification) {
970                notifyListener_l(MEDIA_ERROR, MEDIA_ERROR_UNKNOWN, err);
971            }
972
973            return err;
974        }
975
976        if (wasSeeking) {
977            CHECK(!mAudioPlayer->isSeeking());
978
979            // We will have finished the seek while starting the audio player.
980            postAudioSeekComplete_l();
981        }
982    } else {
983        mAudioPlayer->resume();
984    }
985
986    modifyFlags(AUDIO_RUNNING, SET);
987
988    mWatchForAudioEOS = true;
989
990    return OK;
991}
992
993void AwesomePlayer::notifyVideoSize_l() {
994    sp<MetaData> meta = mVideoSource->getFormat();
995
996    int32_t cropLeft, cropTop, cropRight, cropBottom;
997    if (!meta->findRect(
998                kKeyCropRect, &cropLeft, &cropTop, &cropRight, &cropBottom)) {
999        int32_t width, height;
1000        CHECK(meta->findInt32(kKeyWidth, &width));
1001        CHECK(meta->findInt32(kKeyHeight, &height));
1002
1003        cropLeft = cropTop = 0;
1004        cropRight = width - 1;
1005        cropBottom = height - 1;
1006
1007        LOGV("got dimensions only %d x %d", width, height);
1008    } else {
1009        LOGV("got crop rect %d, %d, %d, %d",
1010             cropLeft, cropTop, cropRight, cropBottom);
1011    }
1012
1013    int32_t displayWidth;
1014    if (meta->findInt32(kKeyDisplayWidth, &displayWidth)) {
1015        LOGV("Display width changed (%d=>%d)", mDisplayWidth, displayWidth);
1016        mDisplayWidth = displayWidth;
1017    }
1018    int32_t displayHeight;
1019    if (meta->findInt32(kKeyDisplayHeight, &displayHeight)) {
1020        LOGV("Display height changed (%d=>%d)", mDisplayHeight, displayHeight);
1021        mDisplayHeight = displayHeight;
1022    }
1023
1024    int32_t usableWidth = cropRight - cropLeft + 1;
1025    int32_t usableHeight = cropBottom - cropTop + 1;
1026    if (mDisplayWidth != 0) {
1027        usableWidth = mDisplayWidth;
1028    }
1029    if (mDisplayHeight != 0) {
1030        usableHeight = mDisplayHeight;
1031    }
1032
1033    {
1034        Mutex::Autolock autoLock(mStatsLock);
1035        mStats.mVideoWidth = usableWidth;
1036        mStats.mVideoHeight = usableHeight;
1037    }
1038
1039    int32_t rotationDegrees;
1040    if (!mVideoTrack->getFormat()->findInt32(
1041                kKeyRotation, &rotationDegrees)) {
1042        rotationDegrees = 0;
1043    }
1044
1045    if (rotationDegrees == 90 || rotationDegrees == 270) {
1046        notifyListener_l(
1047                MEDIA_SET_VIDEO_SIZE, usableHeight, usableWidth);
1048    } else {
1049        notifyListener_l(
1050                MEDIA_SET_VIDEO_SIZE, usableWidth, usableHeight);
1051    }
1052}
1053
1054void AwesomePlayer::initRenderer_l() {
1055    if (mNativeWindow == NULL) {
1056        return;
1057    }
1058
1059    sp<MetaData> meta = mVideoSource->getFormat();
1060
1061    int32_t format;
1062    const char *component;
1063    int32_t decodedWidth, decodedHeight;
1064    CHECK(meta->findInt32(kKeyColorFormat, &format));
1065    CHECK(meta->findCString(kKeyDecoderComponent, &component));
1066    CHECK(meta->findInt32(kKeyWidth, &decodedWidth));
1067    CHECK(meta->findInt32(kKeyHeight, &decodedHeight));
1068
1069    int32_t rotationDegrees;
1070    if (!mVideoTrack->getFormat()->findInt32(
1071                kKeyRotation, &rotationDegrees)) {
1072        rotationDegrees = 0;
1073    }
1074
1075    mVideoRenderer.clear();
1076
1077    // Must ensure that mVideoRenderer's destructor is actually executed
1078    // before creating a new one.
1079    IPCThreadState::self()->flushCommands();
1080
1081    if (USE_SURFACE_ALLOC
1082            && !strncmp(component, "OMX.", 4)
1083            && strncmp(component, "OMX.google.", 11)) {
1084        // Hardware decoders avoid the CPU color conversion by decoding
1085        // directly to ANativeBuffers, so we must use a renderer that
1086        // just pushes those buffers to the ANativeWindow.
1087        mVideoRenderer =
1088            new AwesomeNativeWindowRenderer(mNativeWindow, rotationDegrees);
1089    } else {
1090        // Other decoders are instantiated locally and as a consequence
1091        // allocate their buffers in local address space.  This renderer
1092        // then performs a color conversion and copy to get the data
1093        // into the ANativeBuffer.
1094        mVideoRenderer = new AwesomeLocalRenderer(mNativeWindow, meta);
1095    }
1096}
1097
1098status_t AwesomePlayer::pause() {
1099    Mutex::Autolock autoLock(mLock);
1100
1101    modifyFlags(CACHE_UNDERRUN, CLEAR);
1102
1103    return pause_l();
1104}
1105
1106status_t AwesomePlayer::pause_l(bool at_eos) {
1107    if (!(mFlags & PLAYING)) {
1108        return OK;
1109    }
1110
1111    cancelPlayerEvents(true /* keepBufferingGoing */);
1112
1113    if (mAudioPlayer != NULL && (mFlags & AUDIO_RUNNING)) {
1114        if (at_eos) {
1115            // If we played the audio stream to completion we
1116            // want to make sure that all samples remaining in the audio
1117            // track's queue are played out.
1118            mAudioPlayer->pause(true /* playPendingSamples */);
1119        } else {
1120            mAudioPlayer->pause();
1121        }
1122
1123        modifyFlags(AUDIO_RUNNING, CLEAR);
1124    }
1125
1126    if (mFlags & TEXTPLAYER_STARTED) {
1127        mTextPlayer->pause();
1128        modifyFlags(TEXT_RUNNING, CLEAR);
1129    }
1130
1131    modifyFlags(PLAYING, CLEAR);
1132
1133    if (mDecryptHandle != NULL) {
1134        mDrmManagerClient->setPlaybackStatus(mDecryptHandle,
1135                Playback::PAUSE, 0);
1136    }
1137
1138    uint32_t params = IMediaPlayerService::kBatteryDataTrackDecoder;
1139    if ((mAudioSource != NULL) && (mAudioSource != mAudioTrack)) {
1140        params |= IMediaPlayerService::kBatteryDataTrackAudio;
1141    }
1142    if (mVideoSource != NULL) {
1143        params |= IMediaPlayerService::kBatteryDataTrackVideo;
1144    }
1145
1146    addBatteryData(params);
1147
1148    return OK;
1149}
1150
1151bool AwesomePlayer::isPlaying() const {
1152    return (mFlags & PLAYING) || (mFlags & CACHE_UNDERRUN);
1153}
1154
1155void AwesomePlayer::setSurface(const sp<Surface> &surface) {
1156    Mutex::Autolock autoLock(mLock);
1157
1158    mSurface = surface;
1159    setNativeWindow_l(surface);
1160}
1161
1162void AwesomePlayer::setSurfaceTexture(const sp<ISurfaceTexture> &surfaceTexture) {
1163    Mutex::Autolock autoLock(mLock);
1164
1165    mSurface.clear();
1166    if (surfaceTexture != NULL) {
1167        setNativeWindow_l(new SurfaceTextureClient(surfaceTexture));
1168    } else {
1169        setNativeWindow_l(NULL);
1170    }
1171}
1172
1173void AwesomePlayer::shutdownVideoDecoder_l() {
1174    if (mVideoBuffer) {
1175        mVideoBuffer->release();
1176        mVideoBuffer = NULL;
1177    }
1178
1179    mVideoSource->stop();
1180
1181    // The following hack is necessary to ensure that the OMX
1182    // component is completely released by the time we may try
1183    // to instantiate it again.
1184    wp<MediaSource> tmp = mVideoSource;
1185    mVideoSource.clear();
1186    while (tmp.promote() != NULL) {
1187        usleep(1000);
1188    }
1189    IPCThreadState::self()->flushCommands();
1190    LOGI("video decoder shutdown completed");
1191}
1192
1193void AwesomePlayer::setNativeWindow_l(const sp<ANativeWindow> &native) {
1194    mNativeWindow = native;
1195
1196    if (mVideoSource == NULL) {
1197        return;
1198    }
1199
1200    LOGI("attempting to reconfigure to use new surface");
1201
1202    bool wasPlaying = (mFlags & PLAYING) != 0;
1203
1204    pause_l();
1205    mVideoRenderer.clear();
1206
1207    shutdownVideoDecoder_l();
1208
1209    CHECK_EQ(initVideoDecoder(), (status_t)OK);
1210
1211    if (mLastVideoTimeUs >= 0) {
1212        mSeeking = SEEK;
1213        mSeekTimeUs = mLastVideoTimeUs;
1214        modifyFlags((AT_EOS | AUDIO_AT_EOS | VIDEO_AT_EOS), CLEAR);
1215    }
1216
1217    if (wasPlaying) {
1218        play_l();
1219    }
1220}
1221
1222void AwesomePlayer::setAudioSink(
1223        const sp<MediaPlayerBase::AudioSink> &audioSink) {
1224    Mutex::Autolock autoLock(mLock);
1225
1226    mAudioSink = audioSink;
1227}
1228
1229status_t AwesomePlayer::setLooping(bool shouldLoop) {
1230    Mutex::Autolock autoLock(mLock);
1231
1232    modifyFlags(LOOPING, CLEAR);
1233
1234    if (shouldLoop) {
1235        modifyFlags(LOOPING, SET);
1236    }
1237
1238    return OK;
1239}
1240
1241status_t AwesomePlayer::getDuration(int64_t *durationUs) {
1242    Mutex::Autolock autoLock(mMiscStateLock);
1243
1244    if (mDurationUs < 0) {
1245        return UNKNOWN_ERROR;
1246    }
1247
1248    *durationUs = mDurationUs;
1249
1250    return OK;
1251}
1252
1253status_t AwesomePlayer::getPosition(int64_t *positionUs) {
1254    if (mRTSPController != NULL) {
1255        *positionUs = mRTSPController->getNormalPlayTimeUs();
1256    }
1257    else if (mSeeking != NO_SEEK) {
1258        *positionUs = mSeekTimeUs;
1259    } else if (mVideoSource != NULL
1260            && (mAudioPlayer == NULL || !(mFlags & VIDEO_AT_EOS))) {
1261        Mutex::Autolock autoLock(mMiscStateLock);
1262        *positionUs = mVideoTimeUs;
1263    } else if (mAudioPlayer != NULL) {
1264        *positionUs = mAudioPlayer->getMediaTimeUs();
1265    } else {
1266        *positionUs = 0;
1267    }
1268
1269    return OK;
1270}
1271
1272status_t AwesomePlayer::seekTo(int64_t timeUs) {
1273    if (mExtractorFlags & MediaExtractor::CAN_SEEK) {
1274        Mutex::Autolock autoLock(mLock);
1275        return seekTo_l(timeUs);
1276    }
1277
1278    return OK;
1279}
1280
1281status_t AwesomePlayer::setTimedTextTrackIndex(int32_t index) {
1282    if (mTextPlayer != NULL) {
1283        if (index >= 0) { // to turn on a text track
1284            status_t err = mTextPlayer->setTimedTextTrackIndex(index);
1285            if (err != OK) {
1286                return err;
1287            }
1288
1289            modifyFlags(TEXT_RUNNING, SET);
1290            modifyFlags(TEXTPLAYER_STARTED, SET);
1291            return OK;
1292        } else { // to turn off the text track display
1293            if (mFlags  & TEXT_RUNNING) {
1294                modifyFlags(TEXT_RUNNING, CLEAR);
1295            }
1296            if (mFlags  & TEXTPLAYER_STARTED) {
1297                modifyFlags(TEXTPLAYER_STARTED, CLEAR);
1298            }
1299
1300            return mTextPlayer->setTimedTextTrackIndex(index);
1301        }
1302    } else {
1303        return INVALID_OPERATION;
1304    }
1305}
1306
1307// static
1308void AwesomePlayer::OnRTSPSeekDoneWrapper(void *cookie) {
1309    static_cast<AwesomePlayer *>(cookie)->onRTSPSeekDone();
1310}
1311
1312void AwesomePlayer::onRTSPSeekDone() {
1313    if (!mSeekNotificationSent) {
1314        notifyListener_l(MEDIA_SEEK_COMPLETE);
1315        mSeekNotificationSent = true;
1316    }
1317}
1318
1319status_t AwesomePlayer::seekTo_l(int64_t timeUs) {
1320    if (mRTSPController != NULL) {
1321        mSeekNotificationSent = false;
1322        mRTSPController->seekAsync(timeUs, OnRTSPSeekDoneWrapper, this);
1323        return OK;
1324    }
1325
1326    if (mFlags & CACHE_UNDERRUN) {
1327        modifyFlags(CACHE_UNDERRUN, CLEAR);
1328        play_l();
1329    }
1330
1331    if ((mFlags & PLAYING) && mVideoSource != NULL && (mFlags & VIDEO_AT_EOS)) {
1332        // Video playback completed before, there's no pending
1333        // video event right now. In order for this new seek
1334        // to be honored, we need to post one.
1335
1336        postVideoEvent_l();
1337    }
1338
1339    mSeeking = SEEK;
1340    mSeekNotificationSent = false;
1341    mSeekTimeUs = timeUs;
1342    modifyFlags((AT_EOS | AUDIO_AT_EOS | VIDEO_AT_EOS), CLEAR);
1343
1344    seekAudioIfNecessary_l();
1345
1346    if (mFlags & TEXTPLAYER_STARTED) {
1347        mTextPlayer->seekTo(mSeekTimeUs);
1348    }
1349
1350    if (!(mFlags & PLAYING)) {
1351        LOGV("seeking while paused, sending SEEK_COMPLETE notification"
1352             " immediately.");
1353
1354        notifyListener_l(MEDIA_SEEK_COMPLETE);
1355        mSeekNotificationSent = true;
1356
1357        if ((mFlags & PREPARED) && mVideoSource != NULL) {
1358            modifyFlags(SEEK_PREVIEW, SET);
1359            postVideoEvent_l();
1360        }
1361    }
1362
1363    return OK;
1364}
1365
1366void AwesomePlayer::seekAudioIfNecessary_l() {
1367    if (mSeeking != NO_SEEK && mVideoSource == NULL && mAudioPlayer != NULL) {
1368        mAudioPlayer->seekTo(mSeekTimeUs);
1369
1370        mWatchForAudioSeekComplete = true;
1371        mWatchForAudioEOS = true;
1372
1373        if (mDecryptHandle != NULL) {
1374            mDrmManagerClient->setPlaybackStatus(mDecryptHandle,
1375                    Playback::PAUSE, 0);
1376            mDrmManagerClient->setPlaybackStatus(mDecryptHandle,
1377                    Playback::START, mSeekTimeUs / 1000);
1378        }
1379    }
1380}
1381
1382void AwesomePlayer::setAudioSource(sp<MediaSource> source) {
1383    CHECK(source != NULL);
1384
1385    mAudioTrack = source;
1386}
1387
1388void AwesomePlayer::addTextSource(sp<MediaSource> source) {
1389    Mutex::Autolock autoLock(mTimedTextLock);
1390    CHECK(source != NULL);
1391
1392    if (mTextPlayer == NULL) {
1393        mTextPlayer = new TimedTextPlayer(this, mListener, &mQueue);
1394    }
1395
1396    mTextPlayer->addTextSource(source);
1397}
1398
1399status_t AwesomePlayer::initAudioDecoder() {
1400    sp<MetaData> meta = mAudioTrack->getFormat();
1401
1402    const char *mime;
1403    CHECK(meta->findCString(kKeyMIMEType, &mime));
1404
1405    if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_RAW)) {
1406        mAudioSource = mAudioTrack;
1407    } else {
1408        mAudioSource = OMXCodec::Create(
1409                mClient.interface(), mAudioTrack->getFormat(),
1410                false, // createEncoder
1411                mAudioTrack);
1412    }
1413
1414    if (mAudioSource != NULL) {
1415        int64_t durationUs;
1416        if (mAudioTrack->getFormat()->findInt64(kKeyDuration, &durationUs)) {
1417            Mutex::Autolock autoLock(mMiscStateLock);
1418            if (mDurationUs < 0 || durationUs > mDurationUs) {
1419                mDurationUs = durationUs;
1420            }
1421        }
1422
1423        status_t err = mAudioSource->start();
1424
1425        if (err != OK) {
1426            mAudioSource.clear();
1427            return err;
1428        }
1429    } else if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_QCELP)) {
1430        // For legacy reasons we're simply going to ignore the absence
1431        // of an audio decoder for QCELP instead of aborting playback
1432        // altogether.
1433        return OK;
1434    }
1435
1436    if (mAudioSource != NULL) {
1437        Mutex::Autolock autoLock(mStatsLock);
1438        TrackStat *stat = &mStats.mTracks.editItemAt(mStats.mAudioTrackIndex);
1439
1440        const char *component;
1441        if (!mAudioSource->getFormat()
1442                ->findCString(kKeyDecoderComponent, &component)) {
1443            component = "none";
1444        }
1445
1446        stat->mDecoderName = component;
1447    }
1448
1449    return mAudioSource != NULL ? OK : UNKNOWN_ERROR;
1450}
1451
1452void AwesomePlayer::setVideoSource(sp<MediaSource> source) {
1453    CHECK(source != NULL);
1454
1455    mVideoTrack = source;
1456}
1457
1458status_t AwesomePlayer::initVideoDecoder(uint32_t flags) {
1459
1460    // Either the application or the DRM system can independently say
1461    // that there must be a hardware-protected path to an external video sink.
1462    // For now we always require a hardware-protected path to external video sink
1463    // if content is DRMed, but eventually this could be optional per DRM agent.
1464    // When the application wants protection, then
1465    //   (USE_SURFACE_ALLOC && (mSurface != 0) &&
1466    //   (mSurface->getFlags() & ISurfaceComposer::eProtectedByApp))
1467    // will be true, but that part is already handled by SurfaceFlinger.
1468
1469#ifdef DEBUG_HDCP
1470    // For debugging, we allow a system property to control the protected usage.
1471    // In case of uninitialized or unexpected property, we default to "DRM only".
1472    bool setProtectionBit = false;
1473    char value[PROPERTY_VALUE_MAX];
1474    if (property_get("persist.sys.hdcp_checking", value, NULL)) {
1475        if (!strcmp(value, "never")) {
1476            // nop
1477        } else if (!strcmp(value, "always")) {
1478            setProtectionBit = true;
1479        } else if (!strcmp(value, "drm-only")) {
1480            if (mDecryptHandle != NULL) {
1481                setProtectionBit = true;
1482            }
1483        // property value is empty, or unexpected value
1484        } else {
1485            if (mDecryptHandle != NULL) {
1486                setProtectionBit = true;
1487            }
1488        }
1489    // can' read property value
1490    } else {
1491        if (mDecryptHandle != NULL) {
1492            setProtectionBit = true;
1493        }
1494    }
1495    // note that usage bit is already cleared, so no need to clear it in the "else" case
1496    if (setProtectionBit) {
1497        flags |= OMXCodec::kEnableGrallocUsageProtected;
1498    }
1499#else
1500    if (mDecryptHandle != NULL) {
1501        flags |= OMXCodec::kEnableGrallocUsageProtected;
1502    }
1503#endif
1504    LOGV("initVideoDecoder flags=0x%x", flags);
1505    mVideoSource = OMXCodec::Create(
1506            mClient.interface(), mVideoTrack->getFormat(),
1507            false, // createEncoder
1508            mVideoTrack,
1509            NULL, flags, USE_SURFACE_ALLOC ? mNativeWindow : NULL);
1510
1511    if (mVideoSource != NULL) {
1512        int64_t durationUs;
1513        if (mVideoTrack->getFormat()->findInt64(kKeyDuration, &durationUs)) {
1514            Mutex::Autolock autoLock(mMiscStateLock);
1515            if (mDurationUs < 0 || durationUs > mDurationUs) {
1516                mDurationUs = durationUs;
1517            }
1518        }
1519
1520        status_t err = mVideoSource->start();
1521
1522        if (err != OK) {
1523            mVideoSource.clear();
1524            return err;
1525        }
1526    }
1527
1528    if (mVideoSource != NULL) {
1529        const char *componentName;
1530        CHECK(mVideoSource->getFormat()
1531                ->findCString(kKeyDecoderComponent, &componentName));
1532
1533        {
1534            Mutex::Autolock autoLock(mStatsLock);
1535            TrackStat *stat = &mStats.mTracks.editItemAt(mStats.mVideoTrackIndex);
1536
1537            stat->mDecoderName = componentName;
1538        }
1539
1540        static const char *kPrefix = "OMX.Nvidia.";
1541        static const char *kSuffix = ".decode";
1542        static const size_t kSuffixLength = strlen(kSuffix);
1543
1544        size_t componentNameLength = strlen(componentName);
1545
1546        if (!strncmp(componentName, kPrefix, strlen(kPrefix))
1547                && componentNameLength >= kSuffixLength
1548                && !strcmp(&componentName[
1549                    componentNameLength - kSuffixLength], kSuffix)) {
1550            modifyFlags(SLOW_DECODER_HACK, SET);
1551        }
1552    }
1553
1554    return mVideoSource != NULL ? OK : UNKNOWN_ERROR;
1555}
1556
1557void AwesomePlayer::finishSeekIfNecessary(int64_t videoTimeUs) {
1558    if (mSeeking == SEEK_VIDEO_ONLY) {
1559        mSeeking = NO_SEEK;
1560        return;
1561    }
1562
1563    if (mSeeking == NO_SEEK || (mFlags & SEEK_PREVIEW)) {
1564        return;
1565    }
1566
1567    if (mAudioPlayer != NULL) {
1568        LOGV("seeking audio to %lld us (%.2f secs).", videoTimeUs, videoTimeUs / 1E6);
1569
1570        // If we don't have a video time, seek audio to the originally
1571        // requested seek time instead.
1572
1573        mAudioPlayer->seekTo(videoTimeUs < 0 ? mSeekTimeUs : videoTimeUs);
1574        mWatchForAudioSeekComplete = true;
1575        mWatchForAudioEOS = true;
1576    } else if (!mSeekNotificationSent) {
1577        // If we're playing video only, report seek complete now,
1578        // otherwise audio player will notify us later.
1579        notifyListener_l(MEDIA_SEEK_COMPLETE);
1580        mSeekNotificationSent = true;
1581    }
1582
1583    modifyFlags(FIRST_FRAME, SET);
1584    mSeeking = NO_SEEK;
1585
1586    if (mDecryptHandle != NULL) {
1587        mDrmManagerClient->setPlaybackStatus(mDecryptHandle,
1588                Playback::PAUSE, 0);
1589        mDrmManagerClient->setPlaybackStatus(mDecryptHandle,
1590                Playback::START, videoTimeUs / 1000);
1591    }
1592}
1593
1594void AwesomePlayer::onVideoEvent() {
1595    Mutex::Autolock autoLock(mLock);
1596    if (!mVideoEventPending) {
1597        // The event has been cancelled in reset_l() but had already
1598        // been scheduled for execution at that time.
1599        return;
1600    }
1601    mVideoEventPending = false;
1602
1603    if (mSeeking != NO_SEEK) {
1604        if (mVideoBuffer) {
1605            mVideoBuffer->release();
1606            mVideoBuffer = NULL;
1607        }
1608
1609        if (mSeeking == SEEK && isStreamingHTTP() && mAudioSource != NULL
1610                && !(mFlags & SEEK_PREVIEW)) {
1611            // We're going to seek the video source first, followed by
1612            // the audio source.
1613            // In order to avoid jumps in the DataSource offset caused by
1614            // the audio codec prefetching data from the old locations
1615            // while the video codec is already reading data from the new
1616            // locations, we'll "pause" the audio source, causing it to
1617            // stop reading input data until a subsequent seek.
1618
1619            if (mAudioPlayer != NULL && (mFlags & AUDIO_RUNNING)) {
1620                mAudioPlayer->pause();
1621
1622                modifyFlags(AUDIO_RUNNING, CLEAR);
1623            }
1624            mAudioSource->pause();
1625        }
1626    }
1627
1628    if (!mVideoBuffer) {
1629        MediaSource::ReadOptions options;
1630        if (mSeeking != NO_SEEK) {
1631            LOGV("seeking to %lld us (%.2f secs)", mSeekTimeUs, mSeekTimeUs / 1E6);
1632
1633            options.setSeekTo(
1634                    mSeekTimeUs,
1635                    mSeeking == SEEK_VIDEO_ONLY
1636                        ? MediaSource::ReadOptions::SEEK_NEXT_SYNC
1637                        : MediaSource::ReadOptions::SEEK_CLOSEST_SYNC);
1638        }
1639        for (;;) {
1640            status_t err = mVideoSource->read(&mVideoBuffer, &options);
1641            options.clearSeekTo();
1642
1643            if (err != OK) {
1644                CHECK(mVideoBuffer == NULL);
1645
1646                if (err == INFO_FORMAT_CHANGED) {
1647                    LOGV("VideoSource signalled format change.");
1648
1649                    notifyVideoSize_l();
1650
1651                    if (mVideoRenderer != NULL) {
1652                        mVideoRendererIsPreview = false;
1653                        initRenderer_l();
1654                    }
1655                    continue;
1656                }
1657
1658                // So video playback is complete, but we may still have
1659                // a seek request pending that needs to be applied
1660                // to the audio track.
1661                if (mSeeking != NO_SEEK) {
1662                    LOGV("video stream ended while seeking!");
1663                }
1664                finishSeekIfNecessary(-1);
1665
1666                if (mAudioPlayer != NULL
1667                        && !(mFlags & (AUDIO_RUNNING | SEEK_PREVIEW))) {
1668                    startAudioPlayer_l();
1669                }
1670
1671                modifyFlags(VIDEO_AT_EOS, SET);
1672                postStreamDoneEvent_l(err);
1673                return;
1674            }
1675
1676            if (mVideoBuffer->range_length() == 0) {
1677                // Some decoders, notably the PV AVC software decoder
1678                // return spurious empty buffers that we just want to ignore.
1679
1680                mVideoBuffer->release();
1681                mVideoBuffer = NULL;
1682                continue;
1683            }
1684
1685            break;
1686        }
1687
1688        {
1689            Mutex::Autolock autoLock(mStatsLock);
1690            ++mStats.mNumVideoFramesDecoded;
1691        }
1692    }
1693
1694    int64_t timeUs;
1695    CHECK(mVideoBuffer->meta_data()->findInt64(kKeyTime, &timeUs));
1696
1697    mLastVideoTimeUs = timeUs;
1698
1699    if (mSeeking == SEEK_VIDEO_ONLY) {
1700        if (mSeekTimeUs > timeUs) {
1701            LOGI("XXX mSeekTimeUs = %lld us, timeUs = %lld us",
1702                 mSeekTimeUs, timeUs);
1703        }
1704    }
1705
1706    {
1707        Mutex::Autolock autoLock(mMiscStateLock);
1708        mVideoTimeUs = timeUs;
1709    }
1710
1711    SeekType wasSeeking = mSeeking;
1712    finishSeekIfNecessary(timeUs);
1713
1714    if (mAudioPlayer != NULL && !(mFlags & (AUDIO_RUNNING | SEEK_PREVIEW))) {
1715        status_t err = startAudioPlayer_l();
1716        if (err != OK) {
1717            LOGE("Starting the audio player failed w/ err %d", err);
1718            return;
1719        }
1720    }
1721
1722    if ((mFlags & TEXTPLAYER_STARTED) && !(mFlags & (TEXT_RUNNING | SEEK_PREVIEW))) {
1723        mTextPlayer->resume();
1724        modifyFlags(TEXT_RUNNING, SET);
1725    }
1726
1727    TimeSource *ts = (mFlags & AUDIO_AT_EOS) ? &mSystemTimeSource : mTimeSource;
1728
1729    if (mFlags & FIRST_FRAME) {
1730        modifyFlags(FIRST_FRAME, CLEAR);
1731        mSinceLastDropped = 0;
1732        mTimeSourceDeltaUs = ts->getRealTimeUs() - timeUs;
1733    }
1734
1735    int64_t realTimeUs, mediaTimeUs;
1736    if (!(mFlags & AUDIO_AT_EOS) && mAudioPlayer != NULL
1737        && mAudioPlayer->getMediaTimeMapping(&realTimeUs, &mediaTimeUs)) {
1738        mTimeSourceDeltaUs = realTimeUs - mediaTimeUs;
1739    }
1740
1741    if (wasSeeking == SEEK_VIDEO_ONLY) {
1742        int64_t nowUs = ts->getRealTimeUs() - mTimeSourceDeltaUs;
1743
1744        int64_t latenessUs = nowUs - timeUs;
1745
1746        if (latenessUs > 0) {
1747            LOGI("after SEEK_VIDEO_ONLY we're late by %.2f secs", latenessUs / 1E6);
1748        }
1749    }
1750
1751    if (wasSeeking == NO_SEEK) {
1752        // Let's display the first frame after seeking right away.
1753
1754        int64_t nowUs = ts->getRealTimeUs() - mTimeSourceDeltaUs;
1755
1756        int64_t latenessUs = nowUs - timeUs;
1757
1758        if (latenessUs > 500000ll
1759                && mRTSPController == NULL
1760                && mAudioPlayer != NULL
1761                && mAudioPlayer->getMediaTimeMapping(
1762                    &realTimeUs, &mediaTimeUs)) {
1763            LOGI("we're much too late (%.2f secs), video skipping ahead",
1764                 latenessUs / 1E6);
1765
1766            mVideoBuffer->release();
1767            mVideoBuffer = NULL;
1768
1769            mSeeking = SEEK_VIDEO_ONLY;
1770            mSeekTimeUs = mediaTimeUs;
1771
1772            postVideoEvent_l();
1773            return;
1774        }
1775
1776        if (latenessUs > 40000) {
1777            // We're more than 40ms late.
1778            LOGV("we're late by %lld us (%.2f secs)",
1779                 latenessUs, latenessUs / 1E6);
1780
1781            if (!(mFlags & SLOW_DECODER_HACK)
1782                    || mSinceLastDropped > FRAME_DROP_FREQ)
1783            {
1784                LOGV("we're late by %lld us (%.2f secs) dropping "
1785                     "one after %d frames",
1786                     latenessUs, latenessUs / 1E6, mSinceLastDropped);
1787
1788                mSinceLastDropped = 0;
1789                mVideoBuffer->release();
1790                mVideoBuffer = NULL;
1791
1792                {
1793                    Mutex::Autolock autoLock(mStatsLock);
1794                    ++mStats.mNumVideoFramesDropped;
1795                }
1796
1797                postVideoEvent_l();
1798                return;
1799            }
1800        }
1801
1802        if (latenessUs < -10000) {
1803            // We're more than 10ms early.
1804
1805            postVideoEvent_l(10000);
1806            return;
1807        }
1808    }
1809
1810    if ((mNativeWindow != NULL)
1811            && (mVideoRendererIsPreview || mVideoRenderer == NULL)) {
1812        mVideoRendererIsPreview = false;
1813
1814        initRenderer_l();
1815    }
1816
1817    if (mVideoRenderer != NULL) {
1818        mSinceLastDropped++;
1819        mVideoRenderer->render(mVideoBuffer);
1820    }
1821
1822    mVideoBuffer->release();
1823    mVideoBuffer = NULL;
1824
1825    if (wasSeeking != NO_SEEK && (mFlags & SEEK_PREVIEW)) {
1826        modifyFlags(SEEK_PREVIEW, CLEAR);
1827        return;
1828    }
1829
1830    postVideoEvent_l();
1831}
1832
1833void AwesomePlayer::postVideoEvent_l(int64_t delayUs) {
1834    if (mVideoEventPending) {
1835        return;
1836    }
1837
1838    mVideoEventPending = true;
1839    mQueue.postEventWithDelay(mVideoEvent, delayUs < 0 ? 10000 : delayUs);
1840}
1841
1842void AwesomePlayer::postStreamDoneEvent_l(status_t status) {
1843    if (mStreamDoneEventPending) {
1844        return;
1845    }
1846    mStreamDoneEventPending = true;
1847
1848    mStreamDoneStatus = status;
1849    mQueue.postEvent(mStreamDoneEvent);
1850}
1851
1852void AwesomePlayer::postBufferingEvent_l() {
1853    if (mBufferingEventPending) {
1854        return;
1855    }
1856    mBufferingEventPending = true;
1857    mQueue.postEventWithDelay(mBufferingEvent, 1000000ll);
1858}
1859
1860void AwesomePlayer::postVideoLagEvent_l() {
1861    if (mVideoLagEventPending) {
1862        return;
1863    }
1864    mVideoLagEventPending = true;
1865    mQueue.postEventWithDelay(mVideoLagEvent, 1000000ll);
1866}
1867
1868void AwesomePlayer::postCheckAudioStatusEvent_l(int64_t delayUs) {
1869    if (mAudioStatusEventPending) {
1870        return;
1871    }
1872    mAudioStatusEventPending = true;
1873    mQueue.postEventWithDelay(mCheckAudioStatusEvent, delayUs);
1874}
1875
1876void AwesomePlayer::onCheckAudioStatus() {
1877    Mutex::Autolock autoLock(mLock);
1878    if (!mAudioStatusEventPending) {
1879        // Event was dispatched and while we were blocking on the mutex,
1880        // has already been cancelled.
1881        return;
1882    }
1883
1884    mAudioStatusEventPending = false;
1885
1886    if (mWatchForAudioSeekComplete && !mAudioPlayer->isSeeking()) {
1887        mWatchForAudioSeekComplete = false;
1888
1889        if (!mSeekNotificationSent) {
1890            notifyListener_l(MEDIA_SEEK_COMPLETE);
1891            mSeekNotificationSent = true;
1892        }
1893
1894        mSeeking = NO_SEEK;
1895    }
1896
1897    status_t finalStatus;
1898    if (mWatchForAudioEOS && mAudioPlayer->reachedEOS(&finalStatus)) {
1899        mWatchForAudioEOS = false;
1900        modifyFlags(AUDIO_AT_EOS, SET);
1901        modifyFlags(FIRST_FRAME, SET);
1902        postStreamDoneEvent_l(finalStatus);
1903    }
1904}
1905
1906status_t AwesomePlayer::prepare() {
1907    Mutex::Autolock autoLock(mLock);
1908    return prepare_l();
1909}
1910
1911status_t AwesomePlayer::prepare_l() {
1912    if (mFlags & PREPARED) {
1913        return OK;
1914    }
1915
1916    if (mFlags & PREPARING) {
1917        return UNKNOWN_ERROR;
1918    }
1919
1920    mIsAsyncPrepare = false;
1921    status_t err = prepareAsync_l();
1922
1923    if (err != OK) {
1924        return err;
1925    }
1926
1927    while (mFlags & PREPARING) {
1928        mPreparedCondition.wait(mLock);
1929    }
1930
1931    return mPrepareResult;
1932}
1933
1934status_t AwesomePlayer::prepareAsync() {
1935    Mutex::Autolock autoLock(mLock);
1936
1937    if (mFlags & PREPARING) {
1938        return UNKNOWN_ERROR;  // async prepare already pending
1939    }
1940
1941    mIsAsyncPrepare = true;
1942    return prepareAsync_l();
1943}
1944
1945status_t AwesomePlayer::prepareAsync_l() {
1946    if (mFlags & PREPARING) {
1947        return UNKNOWN_ERROR;  // async prepare already pending
1948    }
1949
1950    if (!mQueueStarted) {
1951        mQueue.start();
1952        mQueueStarted = true;
1953    }
1954
1955    modifyFlags(PREPARING, SET);
1956    mAsyncPrepareEvent = new AwesomeEvent(
1957            this, &AwesomePlayer::onPrepareAsyncEvent);
1958
1959    mQueue.postEvent(mAsyncPrepareEvent);
1960
1961    return OK;
1962}
1963
1964status_t AwesomePlayer::finishSetDataSource_l() {
1965    sp<DataSource> dataSource;
1966
1967    bool isWidevineStreaming = false;
1968    if (!strncasecmp("widevine://", mUri.string(), 11)) {
1969        isWidevineStreaming = true;
1970
1971        String8 newURI = String8("http://");
1972        newURI.append(mUri.string() + 11);
1973
1974        mUri = newURI;
1975    }
1976
1977    if (!strncasecmp("http://", mUri.string(), 7)
1978            || !strncasecmp("https://", mUri.string(), 8)
1979            || isWidevineStreaming) {
1980        mConnectingDataSource = HTTPBase::Create(
1981                (mFlags & INCOGNITO)
1982                    ? HTTPBase::kFlagIncognito
1983                    : 0);
1984
1985        if (mUIDValid) {
1986            mConnectingDataSource->setUID(mUID);
1987        }
1988
1989        mLock.unlock();
1990        status_t err = mConnectingDataSource->connect(mUri, &mUriHeaders);
1991        mLock.lock();
1992
1993        if (err != OK) {
1994            mConnectingDataSource.clear();
1995
1996            LOGI("mConnectingDataSource->connect() returned %d", err);
1997            return err;
1998        }
1999
2000        if (!isWidevineStreaming) {
2001            // The widevine extractor does its own caching.
2002
2003#if 0
2004            mCachedSource = new NuCachedSource2(
2005                    new ThrottledSource(
2006                        mConnectingDataSource, 50 * 1024 /* bytes/sec */));
2007#else
2008            mCachedSource = new NuCachedSource2(mConnectingDataSource);
2009#endif
2010
2011            dataSource = mCachedSource;
2012        } else {
2013            dataSource = mConnectingDataSource;
2014        }
2015
2016        mConnectingDataSource.clear();
2017
2018
2019        String8 contentType = dataSource->getMIMEType();
2020
2021        if (strncasecmp(contentType.string(), "audio/", 6)) {
2022            // We're not doing this for streams that appear to be audio-only
2023            // streams to ensure that even low bandwidth streams start
2024            // playing back fairly instantly.
2025
2026            // We're going to prefill the cache before trying to instantiate
2027            // the extractor below, as the latter is an operation that otherwise
2028            // could block on the datasource for a significant amount of time.
2029            // During that time we'd be unable to abort the preparation phase
2030            // without this prefill.
2031            if (mCachedSource != NULL) {
2032                // We're going to prefill the cache before trying to instantiate
2033                // the extractor below, as the latter is an operation that otherwise
2034                // could block on the datasource for a significant amount of time.
2035                // During that time we'd be unable to abort the preparation phase
2036                // without this prefill.
2037
2038                mLock.unlock();
2039
2040                for (;;) {
2041                    status_t finalStatus;
2042                    size_t cachedDataRemaining =
2043                        mCachedSource->approxDataRemaining(&finalStatus);
2044
2045                    if (finalStatus != OK || cachedDataRemaining >= kHighWaterMarkBytes
2046                            || (mFlags & PREPARE_CANCELLED)) {
2047                        break;
2048                    }
2049
2050                    usleep(200000);
2051                }
2052
2053                mLock.lock();
2054            }
2055
2056            if (mFlags & PREPARE_CANCELLED) {
2057                LOGI("Prepare cancelled while waiting for initial cache fill.");
2058                return UNKNOWN_ERROR;
2059            }
2060        }
2061    } else if (!strncasecmp("rtsp://", mUri.string(), 7)) {
2062        if (mLooper == NULL) {
2063            mLooper = new ALooper;
2064            mLooper->setName("rtsp");
2065            mLooper->start();
2066        }
2067        mRTSPController = new ARTSPController(mLooper);
2068        mConnectingRTSPController = mRTSPController;
2069
2070        if (mUIDValid) {
2071            mConnectingRTSPController->setUID(mUID);
2072        }
2073
2074        mLock.unlock();
2075        status_t err = mRTSPController->connect(mUri.string());
2076        mLock.lock();
2077
2078        mConnectingRTSPController.clear();
2079
2080        LOGI("ARTSPController::connect returned %d", err);
2081
2082        if (err != OK) {
2083            mRTSPController.clear();
2084            return err;
2085        }
2086
2087        sp<MediaExtractor> extractor = mRTSPController.get();
2088        return setDataSource_l(extractor);
2089    } else {
2090        dataSource = DataSource::CreateFromURI(mUri.string(), &mUriHeaders);
2091    }
2092
2093    if (dataSource == NULL) {
2094        return UNKNOWN_ERROR;
2095    }
2096
2097    sp<MediaExtractor> extractor;
2098
2099    if (isWidevineStreaming) {
2100        String8 mimeType;
2101        float confidence;
2102        sp<AMessage> dummy;
2103        bool success = SniffDRM(dataSource, &mimeType, &confidence, &dummy);
2104
2105        if (!success
2106                || strcasecmp(
2107                    mimeType.string(), MEDIA_MIMETYPE_CONTAINER_WVM)) {
2108            return ERROR_UNSUPPORTED;
2109        }
2110
2111        mWVMExtractor = new WVMExtractor(dataSource);
2112        mWVMExtractor->setAdaptiveStreamingMode(true);
2113        extractor = mWVMExtractor;
2114    } else {
2115        extractor = MediaExtractor::Create(dataSource);
2116
2117        if (extractor == NULL) {
2118            return UNKNOWN_ERROR;
2119        }
2120    }
2121
2122    dataSource->getDrmInfo(mDecryptHandle, &mDrmManagerClient);
2123
2124    if (mDecryptHandle != NULL) {
2125        CHECK(mDrmManagerClient);
2126        if (RightsStatus::RIGHTS_VALID != mDecryptHandle->status) {
2127            notifyListener_l(MEDIA_ERROR, MEDIA_ERROR_UNKNOWN, ERROR_DRM_NO_LICENSE);
2128        }
2129    }
2130
2131    status_t err = setDataSource_l(extractor);
2132
2133    if (err != OK) {
2134        mWVMExtractor.clear();
2135
2136        return err;
2137    }
2138
2139    return OK;
2140}
2141
2142void AwesomePlayer::abortPrepare(status_t err) {
2143    CHECK(err != OK);
2144
2145    if (mIsAsyncPrepare) {
2146        notifyListener_l(MEDIA_ERROR, MEDIA_ERROR_UNKNOWN, err);
2147    }
2148
2149    mPrepareResult = err;
2150    modifyFlags((PREPARING|PREPARE_CANCELLED|PREPARING_CONNECTED), CLEAR);
2151    mAsyncPrepareEvent = NULL;
2152    mPreparedCondition.broadcast();
2153}
2154
2155// static
2156bool AwesomePlayer::ContinuePreparation(void *cookie) {
2157    AwesomePlayer *me = static_cast<AwesomePlayer *>(cookie);
2158
2159    return (me->mFlags & PREPARE_CANCELLED) == 0;
2160}
2161
2162void AwesomePlayer::onPrepareAsyncEvent() {
2163    Mutex::Autolock autoLock(mLock);
2164
2165    if (mFlags & PREPARE_CANCELLED) {
2166        LOGI("prepare was cancelled before doing anything");
2167        abortPrepare(UNKNOWN_ERROR);
2168        return;
2169    }
2170
2171    if (mUri.size() > 0) {
2172        status_t err = finishSetDataSource_l();
2173
2174        if (err != OK) {
2175            abortPrepare(err);
2176            return;
2177        }
2178    }
2179
2180    if (mVideoTrack != NULL && mVideoSource == NULL) {
2181        status_t err = initVideoDecoder();
2182
2183        if (err != OK) {
2184            abortPrepare(err);
2185            return;
2186        }
2187    }
2188
2189    if (mAudioTrack != NULL && mAudioSource == NULL) {
2190        status_t err = initAudioDecoder();
2191
2192        if (err != OK) {
2193            abortPrepare(err);
2194            return;
2195        }
2196    }
2197
2198    modifyFlags(PREPARING_CONNECTED, SET);
2199
2200    if (isStreamingHTTP() || mRTSPController != NULL) {
2201        postBufferingEvent_l();
2202    } else {
2203        finishAsyncPrepare_l();
2204    }
2205}
2206
2207void AwesomePlayer::finishAsyncPrepare_l() {
2208    if (mIsAsyncPrepare) {
2209        if (mVideoSource == NULL) {
2210            notifyListener_l(MEDIA_SET_VIDEO_SIZE, 0, 0);
2211        } else {
2212            notifyVideoSize_l();
2213        }
2214
2215        notifyListener_l(MEDIA_PREPARED);
2216    }
2217
2218    mPrepareResult = OK;
2219    modifyFlags((PREPARING|PREPARE_CANCELLED|PREPARING_CONNECTED), CLEAR);
2220    modifyFlags(PREPARED, SET);
2221    mAsyncPrepareEvent = NULL;
2222    mPreparedCondition.broadcast();
2223}
2224
2225uint32_t AwesomePlayer::flags() const {
2226    return mExtractorFlags;
2227}
2228
2229void AwesomePlayer::postAudioEOS(int64_t delayUs) {
2230    Mutex::Autolock autoLock(mLock);
2231    postCheckAudioStatusEvent_l(delayUs);
2232}
2233
2234void AwesomePlayer::postAudioSeekComplete() {
2235    Mutex::Autolock autoLock(mLock);
2236    postAudioSeekComplete_l();
2237}
2238
2239void AwesomePlayer::postAudioSeekComplete_l() {
2240    postCheckAudioStatusEvent_l(0 /* delayUs */);
2241}
2242
2243status_t AwesomePlayer::setParameter(int key, const Parcel &request) {
2244    switch (key) {
2245        case KEY_PARAMETER_TIMED_TEXT_TRACK_INDEX:
2246        {
2247            Mutex::Autolock autoLock(mTimedTextLock);
2248            return setTimedTextTrackIndex(request.readInt32());
2249        }
2250        case KEY_PARAMETER_TIMED_TEXT_ADD_OUT_OF_BAND_SOURCE:
2251        {
2252            Mutex::Autolock autoLock(mTimedTextLock);
2253            if (mTextPlayer == NULL) {
2254                mTextPlayer = new TimedTextPlayer(this, mListener, &mQueue);
2255            }
2256
2257            return mTextPlayer->setParameter(key, request);
2258        }
2259        case KEY_PARAMETER_CACHE_STAT_COLLECT_FREQ_MS:
2260        {
2261            return setCacheStatCollectFreq(request);
2262        }
2263        default:
2264        {
2265            return ERROR_UNSUPPORTED;
2266        }
2267    }
2268}
2269
2270status_t AwesomePlayer::setCacheStatCollectFreq(const Parcel &request) {
2271    if (mCachedSource != NULL) {
2272        int32_t freqMs = request.readInt32();
2273        LOGD("Request to keep cache stats in the past %d ms",
2274            freqMs);
2275        return mCachedSource->setCacheStatCollectFreq(freqMs);
2276    }
2277    return ERROR_UNSUPPORTED;
2278}
2279
2280status_t AwesomePlayer::getParameter(int key, Parcel *reply) {
2281    switch (key) {
2282    case KEY_PARAMETER_AUDIO_CHANNEL_COUNT:
2283        {
2284            int32_t channelCount;
2285            if (mAudioTrack == 0 ||
2286                    !mAudioTrack->getFormat()->findInt32(kKeyChannelCount, &channelCount)) {
2287                channelCount = 0;
2288            }
2289            reply->writeInt32(channelCount);
2290        }
2291        return OK;
2292    default:
2293        {
2294            return ERROR_UNSUPPORTED;
2295        }
2296    }
2297}
2298
2299bool AwesomePlayer::isStreamingHTTP() const {
2300    return mCachedSource != NULL || mWVMExtractor != NULL;
2301}
2302
2303status_t AwesomePlayer::dump(int fd, const Vector<String16> &args) const {
2304    Mutex::Autolock autoLock(mStatsLock);
2305
2306    FILE *out = fdopen(dup(fd), "w");
2307
2308    fprintf(out, " AwesomePlayer\n");
2309    if (mStats.mFd < 0) {
2310        fprintf(out, "  URI(%s)", mStats.mURI.string());
2311    } else {
2312        fprintf(out, "  fd(%d)", mStats.mFd);
2313    }
2314
2315    fprintf(out, ", flags(0x%08x)", mStats.mFlags);
2316
2317    if (mStats.mBitrate >= 0) {
2318        fprintf(out, ", bitrate(%lld bps)", mStats.mBitrate);
2319    }
2320
2321    fprintf(out, "\n");
2322
2323    for (size_t i = 0; i < mStats.mTracks.size(); ++i) {
2324        const TrackStat &stat = mStats.mTracks.itemAt(i);
2325
2326        fprintf(out, "  Track %d\n", i + 1);
2327        fprintf(out, "   MIME(%s)", stat.mMIME.string());
2328
2329        if (!stat.mDecoderName.isEmpty()) {
2330            fprintf(out, ", decoder(%s)", stat.mDecoderName.string());
2331        }
2332
2333        fprintf(out, "\n");
2334
2335        if ((ssize_t)i == mStats.mVideoTrackIndex) {
2336            fprintf(out,
2337                    "   videoDimensions(%d x %d), "
2338                    "numVideoFramesDecoded(%lld), "
2339                    "numVideoFramesDropped(%lld)\n",
2340                    mStats.mVideoWidth,
2341                    mStats.mVideoHeight,
2342                    mStats.mNumVideoFramesDecoded,
2343                    mStats.mNumVideoFramesDropped);
2344        }
2345    }
2346
2347    fclose(out);
2348    out = NULL;
2349
2350    return OK;
2351}
2352
2353void AwesomePlayer::modifyFlags(unsigned value, FlagMode mode) {
2354    switch (mode) {
2355        case SET:
2356            mFlags |= value;
2357            break;
2358        case CLEAR:
2359            mFlags &= ~value;
2360            break;
2361        case ASSIGN:
2362            mFlags = value;
2363            break;
2364        default:
2365            TRESPASS();
2366    }
2367
2368    {
2369        Mutex::Autolock autoLock(mStatsLock);
2370        mStats.mFlags = mFlags;
2371    }
2372}
2373
2374}  // namespace android
2375