diff options
author | jstebbins <[email protected]> | 2013-11-26 22:12:55 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2013-11-26 22:12:55 +0000 |
commit | 779fa193b6433f0afadc3fe3c3a6ad72dce54b2c (patch) | |
tree | 9f42ecc28232e0043d095d8a0f9eab5bb95d1b47 /libhb/stream.c | |
parent | 58f46542a4d4629050ebc6dfed50f4ec2bcfa0a4 (diff) |
libhb: fix a bunch of compiler warnings
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5905 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/stream.c')
-rw-r--r-- | libhb/stream.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libhb/stream.c b/libhb/stream.c index 5d6ec7f4c..936637147 100644 --- a/libhb/stream.c +++ b/libhb/stream.c @@ -5678,6 +5678,8 @@ static hb_title_t *ffmpeg_title_scan( hb_stream_t *stream, hb_title_t *title ) if ( hb_check_hwd_fmt(pix_fmt) == 0) title->hwd_support = 0; #else + // Eliminate compiler warning "pix_fmt set but not used" + (void)pix_fmt; title->hwd_support = 0; #endif |