Could be related to the issue fixed with the patch associated with this pull request (included below)...
https://github.com/GNOME/brasero/pull/3/commits/6a2b21f6823bb458ec9aea4278c6659c9d404f51 I've patched mine and the unpatched version shows the dvdcss plugin disabled (unchecked). With the patch the plugin is checked as enabled. In any event, I'm able to copy a dvd in Ubuntu 16.04 after applying the patch which, btw, just removes a check for a symbol which is no longer exported from the new version of libdvdcss.so.2 diff --git a/plugins/dvdcss/burn-dvdcss.c b/plugins/dvdcss/burn-dvdcss.c index 133b8d5..f6895b8 100644 --- a/plugins/dvdcss/burn-dvdcss.c +++ b/plugins/dvdcss/burn-dvdcss.c @@ -95,9 +95,6 @@ brasero_dvdcss_library_init (BraseroPlugin *plugin) if (!module) goto error_doesnt_exist; - if (!g_module_symbol (module, "dvdcss_interface_2", &address)) - goto error_version; - if (!g_module_symbol (module, "dvdcss_open", &address)) goto error_version; dvdcss_open = address; -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1577268 Title: Brasero can't find libdvdcss when going from Ubuntu 14.04 to 16.04 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/1577268/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
