Skip to content

Commit

Permalink
avfilter/tonemapx: fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
gnattu committed Jul 1, 2024
1 parent 85dc409 commit 5b15f00
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions debian/patches/0080-add-tonemapx-filter.patch
Original file line number Diff line number Diff line change
Expand Up @@ -4155,32 +4155,32 @@ Index: FFmpeg/libavfilter/vf_tonemapx.h
+};
+
+void tonemap_frame_420p10_2_420p(uint8_t *dsty, uint8_t *dstu, uint8_t *dstv,
+ const uint16_t *srcy, const uint16_t *srcu, const uint16_t *srcv,
+ const int *dstlinesize, const int *srclinesize,
+ int dstdepth, int srcdepth,
+ int width, int height,
+ const struct TonemapIntParams *params);
+ const uint16_t *srcy, const uint16_t *srcu, const uint16_t *srcv,
+ const int *dstlinesize, const int *srclinesize,
+ int dstdepth, int srcdepth,
+ int width, int height,
+ const struct TonemapIntParams *params);
+
+void tonemap_frame_p016_p010_2_nv12(uint8_t *dsty, uint8_t *dstuv,
+ const uint16_t *srcy, const uint16_t *srcuv,
+ const int *dstlinesize, const int *srclinesize,
+ int dstdepth, int srcdepth,
+ int width, int height,
+ const struct TonemapIntParams *params);
+ const uint16_t *srcy, const uint16_t *srcuv,
+ const int *dstlinesize, const int *srclinesize,
+ int dstdepth, int srcdepth,
+ int width, int height,
+ const struct TonemapIntParams *params);
+
+void tonemap_frame_420p10_2_420p10(uint16_t *dsty, uint16_t *dstu, uint16_t *dstv,
+ const uint16_t *srcy, const uint16_t *srcu, const uint16_t *srcv,
+ const int *dstlinesize, const int *srclinesize,
+ int dstdepth, int srcdepth,
+ int width, int height,
+ const struct TonemapIntParams *params);
+ const uint16_t *srcy, const uint16_t *srcu, const uint16_t *srcv,
+ const int *dstlinesize, const int *srclinesize,
+ int dstdepth, int srcdepth,
+ int width, int height,
+ const struct TonemapIntParams *params);
+
+void tonemap_frame_p016_p010_2_p016_p010(uint16_t *dsty, uint16_t *dstuv,
+ const uint16_t *srcy, const uint16_t *srcuv,
+ const int *dstlinesize, const int *srclinesize,
+ int dstdepth, int srcdepth,
+ int width, int height,
+ const struct TonemapIntParams *params);
+ const uint16_t *srcy, const uint16_t *srcuv,
+ const int *dstlinesize, const int *srclinesize,
+ int dstdepth, int srcdepth,
+ int width, int height,
+ const struct TonemapIntParams *params);
+
+#endif //AVFILTER_TONEMAPX_H
Index: FFmpeg/libavfilter/x86/vf_tonemapx_intrin_avx.c
Expand Down

0 comments on commit 5b15f00

Please sign in to comment.