From c2d2be320f3ad7dba5ea87a99a7a7a7220bea023 Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Fri, 13 Feb 2015 18:15:48 +0100 Subject: [PATCH] libeplayer3: fix compiler warning --- libeplayer3/input.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libeplayer3/input.cpp b/libeplayer3/input.cpp index b268bb1..cb381c5 100644 --- a/libeplayer3/input.cpp +++ b/libeplayer3/input.cpp @@ -205,9 +205,10 @@ bool Input::Play() AVStream *stream = avfc->streams[packet.stream_index]; Track *_videoTrack = videoTrack; Track *_audioTrack = audioTrack; +#if 0 Track *_subtitleTrack = subtitleTrack; Track *_teletextTrack = teletextTrack; - +#endif if (_videoTrack && (_videoTrack->stream == stream)) { int64_t pts = calcPts(stream, packet.pts); if (audioSeen && !player->output.Write(stream, &packet, pts))