main.cpp 400 B

1234567891011121314151617181920212223242526
  1. #include "widget.h"
  2. #include <QApplication>
  3. #include "Logs/loginit.h"
  4. #include "spdlog/spdlog.h"
  5. #include "FmtLog/fmtlog.h"
  6. extern "C" {
  7. #include <libavcodec/avcodec.h>
  8. #include <libavutil/hwcontext.h>
  9. }
  10. int main(int argc, char *argv[])
  11. {
  12. QApplication a(argc, argv);
  13. init_log();
  14. SPDLOG_INFO("********** VideoPlayer **********");
  15. Widget w;
  16. w.show();
  17. return a.exec();
  18. }