OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mVi
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/media/libstagefright/codecs/vorbis/dec/
SoftVorbis.cpp
53
mVi
(NULL),
69
if (
mVi
!= NULL) {
70
vorbis_info_clear(
mVi
);
71
delete
mVi
;
72
mVi
= NULL;
147
vorbisParams->nChannels =
mVi
->channels;
148
vorbisParams->nSampleRate =
mVi
->rate;
149
vorbisParams->nBitRate =
mVi
->bitrate_nominal;
150
vorbisParams->nMinBitRate =
mVi
->bitrate_lower;
151
vorbisParams->nMaxBitRate =
mVi
->bitrate_upper
[
all
...]
SoftVorbis.h
56
vorbis_info *
mVi
;
/frameworks/base/media/libstagefright/include/
VorbisDecoder.h
61
vorbis_info *
mVi
;
/frameworks/base/media/libstagefright/
OggExtractor.cpp
110
vorbis_info
mVi
;
218
vorbis_info_init(&
mVi
);
224
vorbis_info_clear(&
mVi
);
492
if (
mVi
.rate) {
496
timeUs = mCurrentPage.mGranulePosition * 1000000ll /
mVi
.rate;
636
int64_t durationUs = lastGranulePosition * 1000000ll /
mVi
.rate;
657
entry.mTimeUs = page.mGranulePosition * 1000000ll /
mVi
.rate;
719
CHECK_EQ(0, _vorbis_unpack_info(&
mVi
, &bits));
722
mMeta->setInt32(kKeySampleRate,
mVi
.rate);
723
mMeta->setInt32(kKeyChannelCount,
mVi
.channels)
[
all
...]
Completed in 81 milliseconds