OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CCTrack
(Results
1 - 2
of
2
) sorted by null
/frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerCCDecoder.h
48
struct
CCTrack
{
49
CCTrack
() : mTrackType(0), mTrackChannel(0) { }
51
CCTrack
(const int32_t trackType, const size_t trackChannel)
58
// It is necessary to find the index of the matched
CCTrack
when CC data comes.
59
int compare(const NuPlayer::CCDecoder::
CCTrack
& rhs) const;
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;
68
KeyedVector<
CCTrack
, size_t> mTrackIndices;
69
Vector<
CCTrack
> mTracks
[
all
...]
NuPlayerCCDecoder.cpp
144
CCTrack
track = mTracks[index];
474
CCTrack
track(trackType, channel);
554
int32_t NuPlayer::CCDecoder::
CCTrack
::compare(const NuPlayer::CCDecoder::
CCTrack
& rhs) const {
560
bool NuPlayer::CCDecoder::
CCTrack
::operator<(const NuPlayer::CCDecoder::
CCTrack
& rhs) const {
564
bool NuPlayer::CCDecoder::
CCTrack
::operator==(const NuPlayer::CCDecoder::
CCTrack
& rhs) const {
568
bool NuPlayer::CCDecoder::
CCTrack
::operator!=(const NuPlayer::CCDecoder::
CCTrack
& rhs) const
[
all
...]
Completed in 810 milliseconds