diff options
author | jstebbins <[email protected]> | 2014-12-19 19:18:35 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-12-19 19:18:35 +0000 |
commit | 4a79916632f646a6654720e313da35f5ad05db39 (patch) | |
tree | c9de97aaa1618b6e45add10d93821f5a303f830d /libhb/internal.h | |
parent | 83aa999e8f5e76547159c9fc202e109c706a03ac (diff) |
libhb: add hb_image_init to create blank images
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6613 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/internal.h')
-rw-r--r-- | libhb/internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libhb/internal.h b/libhb/internal.h index 7fb266c8c..a45c85add 100644 --- a/libhb/internal.h +++ b/libhb/internal.h @@ -166,6 +166,7 @@ hb_buffer_t * hb_buffer_dup( const hb_buffer_t * src ); int hb_buffer_copy( hb_buffer_t * dst, const hb_buffer_t * src ); void hb_buffer_swap_copy( hb_buffer_t *src, hb_buffer_t *dst ); void hb_buffer_move_subs( hb_buffer_t * dst, hb_buffer_t * src ); +hb_image_t * hb_image_init(int pix_fmt, int width, int height); hb_image_t * hb_buffer_to_image(hb_buffer_t *buf); hb_fifo_t * hb_fifo_init( int capacity, int thresh ); |