Skip to content

Commit

Permalink
build & test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
igorshevach committed Apr 25, 2024
1 parent 7642bb2 commit 1ecc609
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions transcoder/transcode/transcode_codec.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,13 @@ 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

0 comments on commit 1ecc609

Please sign in to comment.