Skip to content
Snippets Groups Projects
Commit dc239008 authored by Adrien Béraud's avatar Adrien Béraud
Browse files

manager: log ffmpeg version on startup

Change-Id: If093cd75fc19e630209c518a747b1a50d389e2c8
parent 0eb72e4f
No related branches found
No related tags found
No related merge requests found
...@@ -90,6 +90,8 @@ using random_device = dht::crypto::random_device; ...@@ -90,6 +90,8 @@ using random_device = dht::crypto::random_device;
#include "data_transfer.h" #include "data_transfer.h"
#include "dring/media_const.h" #include "dring/media_const.h"
#include <libavutil/ffversion.h>
#include <opendht/thread_pool.h> #include <opendht/thread_pool.h>
#include <asio/io_context.hpp> #include <asio/io_context.hpp>
...@@ -772,6 +774,7 @@ Manager::init(const std::string& config_file) ...@@ -772,6 +774,7 @@ Manager::init(const std::string& config_file)
JAMI_DBG("Using PJSIP version %s for %s", pj_get_version(), PJ_OS_NAME); JAMI_DBG("Using PJSIP version %s for %s", pj_get_version(), PJ_OS_NAME);
JAMI_DBG("Using GnuTLS version %s", gnutls_check_version(nullptr)); JAMI_DBG("Using GnuTLS version %s", gnutls_check_version(nullptr));
JAMI_DBG("Using OpenDHT version %s", dht::version()); JAMI_DBG("Using OpenDHT version %s", dht::version());
JAMI_DBG("Using FFmpeg version %s", av_version_info());
setDhtLogLevel(); setDhtLogLevel();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment