Home
last modified time | relevance | path

Searched refs:CCDecoder (Results 1 – 6 of 6) sorted by relevance

/frameworks/av/media/libmediaplayerservice/nuplayer/
DNuPlayerCCDecoder.cpp120 NuPlayer::CCDecoder::CCDecoder(const sp<AMessage> &notify) in CCDecoder() function in android::NuPlayer::CCDecoder
133 size_t NuPlayer::CCDecoder::getTrackCount() const { in getTrackCount()
137 sp<AMessage> NuPlayer::CCDecoder::getTrackInfo(size_t index) const { in getTrackInfo()
174 status_t NuPlayer::CCDecoder::selectTrack(size_t index, bool select) { in selectTrack()
201 bool NuPlayer::CCDecoder::isSelected() const { in isSelected()
205 bool NuPlayer::CCDecoder::isTrackValid(size_t index) const { in isTrackValid()
210 bool NuPlayer::CCDecoder::extractFromSEI(const sp<ABuffer> &accessUnit) { in extractFromSEI()
232 bool NuPlayer::CCDecoder::parseSEINalUnit(int64_t timeUs, const uint8_t *data, size_t size) { in parseSEINalUnit()
302 bool NuPlayer::CCDecoder::extractFromMPEGUserData(const sp<ABuffer> &accessUnit) { in extractFromMPEGUserData()
330 bool NuPlayer::CCDecoder::parseMPEGUserDataUnit(int64_t timeUs, const uint8_t *data, size_t size) { in parseMPEGUserDataUnit()
[all …]
DNuPlayerCCDecoder.h25 struct NuPlayer::CCDecoder : public RefBase { struct
36 explicit CCDecoder(const sp<AMessage> &notify); argument
59 int compare(const NuPlayer::CCDecoder::CCTrack& rhs) const; argument
60 inline bool operator<(const NuPlayer::CCDecoder::CCTrack& rhs) const;
61 inline bool operator==(const NuPlayer::CCDecoder::CCTrack& rhs) const;
62 inline bool operator!=(const NuPlayer::CCDecoder::CCTrack& rhs) const;
92 DISALLOW_EVIL_CONSTRUCTORS(CCDecoder); argument
DNuPlayerDecoder.h35 const sp<CCDecoder> &ccDecoder = NULL);
74 sp<CCDecoder> mCCDecoder;
DNuPlayer.h111 struct CCDecoder;
168 sp<CCDecoder> mCCDecoder;
DNuPlayer.cpp1778 mCCDecoder = new CCDecoder(ccNotify); in instantiateDecoder()
2573 case NuPlayer::CCDecoder::kWhatClosedCaptionData: in onClosedCaptionNotify()
2587 case NuPlayer::CCDecoder::kWhatTrackAdded: in onClosedCaptionNotify()
DNuPlayerDecoder.cpp65 const sp<CCDecoder> &ccDecoder) in Decoder()