Skip to content
This repository has been archived by the owner on Mar 15, 2021. It is now read-only.

Commit

Permalink
change ffmpeg dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
CatxFish committed Sep 25, 2019
1 parent 7487193 commit 8110f6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/virtual-output/hflip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ bool init_flip_filter(FlipContext* ctx,int width, int height, int format)

avfilter_register_all();

AVFilter *buffersrc = avfilter_get_by_name("buffer");
AVFilter *buffersink = avfilter_get_by_name("buffersink");
const AVFilter *buffersrc = avfilter_get_by_name("buffer");
const AVFilter *buffersink = avfilter_get_by_name("buffersink");
AVFilterInOut *outputs = avfilter_inout_alloc();
AVFilterInOut *inputs = avfilter_inout_alloc();
enum AVPixelFormat pix_fmts[] = { (AVPixelFormat)format, AV_PIX_FMT_NONE };
Expand Down
1 change: 0 additions & 1 deletion src/virtual-output/hflip.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
extern "C"
{
#include "stdint.h"
#include "libavfilter/avfiltergraph.h"
#include "libavfilter/buffersink.h"
#include "libavfilter/buffersrc.h"
#include "libavutil/avutil.h"
Expand Down

0 comments on commit 8110f6d

Please sign in to comment.