Home
last modified time | relevance | path

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

/aosp12/frameworks/av/media/libmediaplayerservice/nuplayer/
H A 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()
215 bool NuPlayer::CCDecoder::isSelected() const { in isSelected()
219 bool NuPlayer::CCDecoder::isTrackValid(size_t index) const { in isTrackValid()
514 size_t NuPlayer::CCDecoder::getTrackIndex( in getTrackIndex()
540 void NuPlayer::CCDecoder::display(int64_t timeUs) { in display()
591 void NuPlayer::CCDecoder::flush() { in flush()
596 int32_t NuPlayer::CCDecoder::CCTrack::compare(const NuPlayer::CCDecoder::CCTrack& rhs) const { in compare()
602 bool NuPlayer::CCDecoder::CCTrack::operator<(const NuPlayer::CCDecoder::CCTrack& rhs) const { in operator <()
606 bool NuPlayer::CCDecoder::CCTrack::operator==(const NuPlayer::CCDecoder::CCTrack& rhs) const { in operator ==()
[all …]
H A DNuPlayerCCDecoder.h25 struct NuPlayer::CCDecoder : public RefBase { struct
36 explicit CCDecoder(const sp<AMessage> &notify); argument
60 int compare(const NuPlayer::CCDecoder::CCTrack& rhs) const; argument
61 inline bool operator<(const NuPlayer::CCDecoder::CCTrack& rhs) const;
62 inline bool operator==(const NuPlayer::CCDecoder::CCTrack& rhs) const;
63 inline bool operator!=(const NuPlayer::CCDecoder::CCTrack& rhs) const;
93 DISALLOW_EVIL_CONSTRUCTORS(CCDecoder); argument
H A DNuPlayerDecoder.h35 const sp<CCDecoder> &ccDecoder = NULL);
74 sp<CCDecoder> mCCDecoder;
H A DNuPlayer.h120 struct CCDecoder;
182 sp<CCDecoder> mCCDecoder;
H A DNuPlayer.cpp1950 mCCDecoder = new CCDecoder(ccNotify); in instantiateDecoder()
2762 case NuPlayer::CCDecoder::kWhatClosedCaptionData: in onClosedCaptionNotify()
2776 case NuPlayer::CCDecoder::kWhatTrackAdded: in onClosedCaptionNotify()
H A DNuPlayerDecoder.cpp66 const sp<CCDecoder> &ccDecoder) in Decoder()