Skip to content

Commit

Permalink
lavfi/metal: don't use braced-include for internal headers
Browse files Browse the repository at this point in the history
  • Loading branch information
rcombs committed Dec 23, 2021
1 parent bc63ef3 commit 2d16182
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion libavfilter/metal/utils.m
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/

#include "libavutil/log.h"
#include <libavfilter/metal/utils.h>
#include "utils.h"

void ff_metal_compute_encoder_dispatch(id<MTLDevice> device,
id<MTLComputePipelineState> pipeline,
Expand Down
8 changes: 4 additions & 4 deletions libavfilter/vf_yadif_videotoolbox.m
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
*/

#include "internal.h"
#include "metal/utils.h"
#include "yadif.h"
#include <libavutil/avassert.h>
#include <libavutil/hwcontext.h>
#include <libavutil/objc.h>
#include <libavfilter/metal/utils.h>
#include "libavutil/avassert.h"
#include "libavutil/hwcontext.h"
#include "libavutil/objc.h"

extern char ff_vf_yadif_videotoolbox_metallib_data[];
extern unsigned int ff_vf_yadif_videotoolbox_metallib_len;
Expand Down

0 comments on commit 2d16182

Please sign in to comment.