Add missing includes

Refs #2616 <https://github.com/Genymobile/scrcpy/issues/2616>
This commit is contained in:
Romain Vimont 2021-09-20 18:27:37 +02:00
parent fa100b814b
commit 31131039bb
2 changed files with 3 additions and 0 deletions

View file

@ -1,5 +1,6 @@
#include "decoder.h"
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include "events.h"

View file

@ -1,6 +1,8 @@
#include "recorder.h"
#include <assert.h>
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libavutil/time.h>
#include "util/log.h"