@@ -1635,7 +1635,7 @@ status_t OMXCodec::allocateBuffersOnPort(OMX_U32 portIndex) {
16351635 return err;
16361636 }
16371637
1638- CODEC_LOGI (" allocating %lu buffers of size %lu on %s port" ,
1638+ CODEC_LOGV (" allocating %lu buffers of size %lu on %s port" ,
16391639 def.nBufferCountActual , def.nBufferSize ,
16401640 portIndex == kPortIndexInput ? " input" : " output" );
16411641
@@ -1876,7 +1876,7 @@ status_t OMXCodec::allocateOutputBuffersFromNativeWindow() {
18761876 return err;
18771877 }
18781878
1879- CODEC_LOGI (" allocating %lu buffers from a native window of size %lu on "
1879+ CODEC_LOGV (" allocating %lu buffers from a native window of size %lu on "
18801880 " output port" , def.nBufferCountActual , def.nBufferSize );
18811881
18821882 // Dequeue buffers and send them to OMX
@@ -3654,7 +3654,7 @@ status_t OMXCodec::stop() {
36543654
36553655 mSource ->stop ();
36563656
3657- CODEC_LOGI (" stopped in state %d" , mState );
3657+ CODEC_LOGV (" stopped in state %d" , mState );
36583658
36593659 return OK;
36603660}
@@ -4219,14 +4219,14 @@ void OMXCodec::initOutputFormat(const sp<MetaData> &inputFormat) {
42194219 inputFormat->findInt32 (kKeySampleRate , &sampleRate);
42204220
42214221 if ((OMX_U32)numChannels != params.nChannels ) {
4222- LOGW (" Codec outputs a different number of channels than "
4222+ LOGV (" Codec outputs a different number of channels than "
42234223 " the input stream contains (contains %d channels, "
42244224 " codec outputs %ld channels)." ,
42254225 numChannels, params.nChannels );
42264226 }
42274227
42284228 if (sampleRate != (int32_t )params.nSamplingRate ) {
4229- LOGW (" Codec outputs at different sampling rate than "
4229+ LOGV (" Codec outputs at different sampling rate than "
42304230 " what the input stream contains (contains data at "
42314231 " %d Hz, codec outputs %lu Hz)" ,
42324232 sampleRate, params.nSamplingRate );
0 commit comments