Unverified Commit caeaeb65 authored by Prabhat Roy's avatar Prabhat Roy Committed by GitHub
Browse files

Removed excessive logging (#4878)

parent 9a7dc1a1
...@@ -74,15 +74,6 @@ int Stream::openCodec(std::vector<DecoderMetadata>* metadata, int num_threads) { ...@@ -74,15 +74,6 @@ int Stream::openCodec(std::vector<DecoderMetadata>* metadata, int num_threads) {
} }
} }
// print codec type and number of threads
LOG(INFO) << "Codec " << codecCtx_->codec->long_name
<< " Codec id: " << codecCtx_->codec_id
<< " Codec tag: " << codecCtx_->codec_tag
<< " Codec type: " << codecCtx_->codec_type
<< " Codec extradata: " << codecCtx_->extradata
<< " Number of threads: " << codecCtx_->thread_count
<< " Thread type: " << codecCtx_->thread_type;
int ret; int ret;
// Copy codec parameters from input stream to output codec context // Copy codec parameters from input stream to output codec context
if ((ret = avcodec_parameters_to_context(codecCtx_, steam->codecpar)) < 0) { if ((ret = avcodec_parameters_to_context(codecCtx_, steam->codecpar)) < 0) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment