diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2015-01-30 13:09:02 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-01-30 14:47:08 +0100 |
commit | 1fa637d2ef00bf1fddd310221d849cc6ccc139b3 (patch) | |
tree | 5cb8b8638abc6742422b38cf108b49e4aaabe2d1 /ffmpeg.c | |
parent | 40b026b1d0a33684ec28fd7db03e250671babefa (diff) | |
download | ffmpeg-1fa637d2ef00bf1fddd310221d849cc6ccc139b3.tar.gz |
ffmpeg: free_input_threads requires HAVE_PTHREADS
Hide behind that macro to avoid warning on systems with
!HAVE_PTHREADS.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -155,8 +155,9 @@ static struct termios oldtty; static int restore_tty; #endif +#if HAVE_PTHREADS static void free_input_threads(void); - +#endif /* sub2video hack: Convert subtitles to video with alpha to insert them in filter graphs. |