diff options
Diffstat (limited to 'libhb/hbffmpeg.h')
-rw-r--r-- | libhb/hbffmpeg.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libhb/hbffmpeg.h b/libhb/hbffmpeg.h new file mode 100644 index 000000000..e0a7634d3 --- /dev/null +++ b/libhb/hbffmpeg.h @@ -0,0 +1,11 @@ +/* This file is part of the HandBrake source code. + Homepage: <http://handbrake.fr/>. + It may be used under the terms of the GNU General Public License. */ + +#include "libavcodec/avcodec.h" +#include "libavformat/avformat.h" +#include "libswscale/swscale.h" + +void hb_avcodec_init(void); +int hb_avcodec_open( AVCodecContext *, struct AVCodec * ); +int hb_avcodec_close( AVCodecContext * ); |