diff options
author | konablend <[email protected]> | 2009-06-24 03:18:52 +0000 |
---|---|---|
committer | konablend <[email protected]> | 2009-06-24 03:18:52 +0000 |
commit | 3082c33859dd160a4db6b0f44ea83a092d44a823 (patch) | |
tree | 6c9bbaeceea6de30b569a5b1c0c78fa1dbb1cb61 /libhb/internal.h | |
parent | 82cb2f642093c2a9a8e2f8f484dbb96dccc53c2a (diff) |
- fixed gcc warnings for various unused vars, implicit function decls, signedness.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2612 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/internal.h')
-rw-r--r-- | libhb/internal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libhb/internal.h b/libhb/internal.h index a00142b8f..c68d9fa82 100644 --- a/libhb/internal.h +++ b/libhb/internal.h @@ -189,6 +189,9 @@ void hb_stream_close( hb_stream_t ** ); hb_title_t * hb_stream_title_scan( hb_stream_t *); int hb_stream_read( hb_stream_t *, hb_buffer_t *); int hb_stream_seek( hb_stream_t *, float ); +int hb_stream_seek_chapter( hb_stream_t *, int ); +int hb_stream_chapter( hb_stream_t * ); + void * hb_ffmpeg_context( int codec_param ); void * hb_ffmpeg_avstream( int codec_param ); |