Skip to content
Snippets Groups Projects
Commit aaf1746c authored by Mason Hock's avatar Mason Hock
Browse files

added print statemnts

parent 63394b9c
No related branches found
No related tags found
No related merge requests found
......@@ -321,6 +321,10 @@ class ApplicationMenu(CoreApplicationMenu):
cap = Gst.Caps.from_string(codec)
#print "codec: ",codec
#print "cap: ",cap
print cap, search_cap
print cap.to_string(), search_cap.to_string()
print bool(cap), bool(search_cap)
print bool(cap.to_string()), bool(search_cap.to_string())
if (cap and search_cap and
(search_cap & cap)):
return True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment