diff options
author | John Stebbins <[email protected]> | 2019-03-15 11:12:38 -0600 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-04-08 07:44:09 -0600 |
commit | 248c880fc86ee07d23d62135e002940f16364eb6 (patch) | |
tree | 7d0e2fa275cf8acf9cf678af457a1e93bb0afc1b /libhb/internal.h | |
parent | 80aa72096148c8bd84e2abb677a57dcadfe03e1c (diff) |
avfilter: simplify internal API to avfilter
Use this interface in decavcodec.
Remove cropscale.c and use avfilter for crop and scale.
Improve log output of filters that are aliases for avfilter.
Diffstat (limited to 'libhb/internal.h')
-rw-r--r-- | libhb/internal.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libhb/internal.h b/libhb/internal.h index 5357a3af7..fb121a9bf 100644 --- a/libhb/internal.h +++ b/libhb/internal.h @@ -113,6 +113,7 @@ struct hb_image_format_s int width; int height; int fmt; + int max_plane; int window_width; int window_height; }; @@ -498,8 +499,6 @@ DECLARE_MUX( webm ); DECLARE_MUX( avformat ); void hb_deinterlace(hb_buffer_t *dst, hb_buffer_t *src); -void hb_avfilter_combine( hb_list_t * list ); -char * hb_append_filter_string(char * graph_str, char * filter_str); struct hb_chapter_queue_item_s { |