Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove hex_dump call #205

Merged
merged 1 commit into from
May 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions transcoder/transcode/transcode_codec.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,13 +184,6 @@ int transcode_codec_init_decoder( transcode_codec_t * pContext,transcode_mediaIn
codec_ctx->sample_aspect_ratio.num,
codec_ctx->sample_aspect_ratio.den,
codec_ctx->extradata_size);

if(codec_ctx->extradata_size > 0) {
LOGGER0(CATEGORY_CODEC,AV_LOG_INFO, "dump extradata:");

hex_dump(CATEGORY_CODEC,AV_LOG_INFO,
codec_ctx->extradata,codec_ctx->extradata + codec_ctx->extradata_size);
}
}
if (codec_ctx->codec_type==AVMEDIA_TYPE_AUDIO) {
char temp[128];
Expand Down
Loading