fftools/ffmpeg_mux_init: remove leftover debug log messages

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2024-04-24 17:36:45 -03:00
parent b9af58184f
commit f684228407
1 changed files with 0 additions and 2 deletions

View File

@ -2303,7 +2303,6 @@ static int of_map_group(Muxer *mux, AVDictionary **dict, AVBPrint *bp, const cha
av_log(mux, AV_LOG_ERROR, "Error parsing mapped group specification %s\n", ptr);
av_dict_set_int(dict, "type", stg->type, 0);
av_log(mux, AV_LOG_VERBOSE, "stg %s\n", bp->str);
av_bprint_clear(bp);
switch(stg->type) {
case AV_STREAM_GROUP_PARAMS_IAMF_AUDIO_ELEMENT: {
@ -2353,7 +2352,6 @@ static int of_map_group(Muxer *mux, AVDictionary **dict, AVBPrint *bp, const cha
ret = AVERROR(EINVAL);
break;
}
av_log(mux, AV_LOG_VERBOSE, "extra %s\n", bp->str);
return 0;
}