]> git.sesse.net Git - vlc/commitdiff
Fixed discontinous flag in bandlimited when not resampling.
authorLaurent Aimar <fenrir@videolan.org>
Fri, 2 Oct 2009 18:43:02 +0000 (20:43 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Sat, 3 Oct 2009 16:32:40 +0000 (18:32 +0200)
modules/audio_filter/resampler/bandlimited.c

index e40cacd3d112cd23deff3c3a3f978dba525f0234..0fba703f447eaeed348dae654a1472c6550b575d 100644 (file)
@@ -133,7 +133,6 @@ static block_t *Resample( filter_t * p_filter, block_t * p_in_buf )
                 date_Increment( &p_sys->end_date,
                                 p_in_buf->i_nb_samples ) - p_in_buf->i_pts;
         }
-        p_in_buf->i_flags |= BLOCK_FLAG_DISCONTINUITY;
         p_sys->i_old_wing = 0;
         return p_in_buf;
     }