mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:20:56 +01:00
avutil/tree: change debug output to AV_LOG_DEBUG level
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
93b3a5edff
commit
647836608c
1 changed files with 2 additions and 2 deletions
|
|
@ -222,7 +222,7 @@ int main(void)
|
|||
print(root, 0);
|
||||
return -1;
|
||||
}
|
||||
av_log(NULL, AV_LOG_ERROR, "inserting %4d\n", (int)j);
|
||||
av_log(NULL, AV_LOG_DEBUG, "inserting %4d\n", (int)j);
|
||||
if (!node)
|
||||
node = av_tree_node_alloc();
|
||||
av_tree_insert(&root, (void *)(j + 1), cmp, &node);
|
||||
|
|
@ -230,7 +230,7 @@ int main(void)
|
|||
j = av_lfg_get(&prng) % 86294;
|
||||
{
|
||||
AVTreeNode *node2 = NULL;
|
||||
av_log(NULL, AV_LOG_ERROR, "removing %4d\n", (int)j);
|
||||
av_log(NULL, AV_LOG_DEBUG, "removing %4d\n", (int)j);
|
||||
av_tree_insert(&root, (void *)(j + 1), cmp, &node2);
|
||||
k = av_tree_find(root, (void *)(j + 1), cmp, NULL);
|
||||
if (k)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue