Fix another little silly thing.

parent 76fcb7fc
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* ac3_spdif.c: ac3 pass-through to external decoder with enabled soundcard * ac3_spdif.c: ac3 pass-through to external decoder with enabled soundcard
***************************************************************************** *****************************************************************************
* Copyright (C) 2001 VideoLAN * Copyright (C) 2001 VideoLAN
* $Id: ac3_spdif.c,v 1.9 2001/07/27 00:49:46 bozo Exp $ * $Id: ac3_spdif.c,v 1.10 2001/07/27 01:19:24 bozo Exp $
* *
* Authors: Stphane Borel <stef@via.ecp.fr> * Authors: Stphane Borel <stef@via.ecp.fr>
* Juha Yrjola <jyrjola@cc.hut.fi> * Juha Yrjola <jyrjola@cc.hut.fi>
...@@ -190,7 +190,7 @@ static void RunThread( ac3_spdif_thread_t * p_spdif ) ...@@ -190,7 +190,7 @@ static void RunThread( ac3_spdif_thread_t * p_spdif )
while( !p_spdif->p_fifo->b_die && !p_spdif->p_fifo->b_error ) while( !p_spdif->p_fifo->b_die && !p_spdif->p_fifo->b_error )
{ {
/* Handle the dates */ /* Handle the dates */
if( ( p_spdif->i_pts ) && ( p_spdif->i_pts != m_last_pts ) ) if( p_spdif->i_pts )
{ {
m_last_pts = p_spdif->i_pts; m_last_pts = p_spdif->i_pts;
p_spdif->i_pts = 0; p_spdif->i_pts = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment