aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/tests/imf.c
diff options
context:
space:
mode:
authorPierre-Anthony Lemieux <pal@palemieux.com>2023-05-29 09:59:04 -0700
committerPierre-Anthony Lemieux <pal@palemieux.com>2023-05-31 09:03:58 -0700
commit0f2f0dd5b415884792a29f7db15d364c730067cf (patch)
tree7247bbea4a896ee729886baaaa5c226857cbdf46 /libavformat/tests/imf.c
parentba2c791627334ac70e5a5df480b80ee3ce61519d (diff)
downloadffmpeg-0f2f0dd5b415884792a29f7db15d364c730067cf.tar.gz
avformat/imf: clean-up logging
* remove logging to NULL * remove extraneous logging
Diffstat (limited to 'libavformat/tests/imf.c')
-rw-r--r--libavformat/tests/imf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/tests/imf.c b/libavformat/tests/imf.c
index 068ee6c58a..92d1052a1d 100644
--- a/libavformat/tests/imf.c
+++ b/libavformat/tests/imf.c
@@ -341,7 +341,7 @@ static int test_cpl_parsing(void)
return 1;
}
- ret = ff_imf_parse_cpl_from_xml_dom(doc, &cpl);
+ ret = ff_imf_parse_cpl_from_xml_dom(NULL, doc, &cpl);
xmlFreeDoc(doc);
if (ret) {
printf("CPL parsing failed.\n");
@@ -394,7 +394,7 @@ static int test_cpl_from_doc(FFIMFCPL **cpl, const char* cpl_doc, int should_pas
return should_pass;
}
- ret = ff_imf_parse_cpl_from_xml_dom(doc, cpl);
+ ret = ff_imf_parse_cpl_from_xml_dom(NULL, doc, cpl);
xmlFreeDoc(doc);
if (ret) {
printf("CPL parsing failed.\n");