[vlc-commits] demux: ogg: fix warning

Francois Cartegnie git at videolan.org
Mon Nov 9 11:04:52 CET 2015


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Mon Nov  9 11:02:51 2015 +0100| [9cb94277e273583f42339ab758503f911f48195e] | committer: Francois Cartegnie

demux: ogg: fix warning

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9cb94277e273583f42339ab758503f911f48195e
---

 modules/demux/ogg.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/modules/demux/ogg.c b/modules/demux/ogg.c
index 6858698..cc69c0c 100644
--- a/modules/demux/ogg.c
+++ b/modules/demux/ogg.c
@@ -2635,6 +2635,7 @@ static bool Ogg_ReadDaalaHeader( logical_stream_t *p_stream,
     }
 
     i_version = i_major * 1000000 + i_minor * 1000 + i_subminor;
+    VLC_UNUSED(i_version);
     p_stream->i_keyframe_offset = 0;
     p_stream->f_rate = ((double)i_timebase_numerator) / i_timebase_denominator;
     if ( p_stream->f_rate == 0 ) return false;



More information about the vlc-commits mailing list