diff options
author | eddyg <[email protected]> | 2008-10-16 19:45:25 +0000 |
---|---|---|
committer | eddyg <[email protected]> | 2008-10-16 19:45:25 +0000 |
commit | 9537038e99c25c083b154672ed0abd571283c6ae (patch) | |
tree | f205964c496c5c2f76c36ca930113ed7213c437f /libhb/deca52.c | |
parent | 2a458ff922734a6fcf0d097aad27df9b0b5c743a (diff) |
Don't announce when getting a bad AC3 sync, just silently look for two matching syncs.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1838 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/deca52.c')
-rw-r--r-- | libhb/deca52.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libhb/deca52.c b/libhb/deca52.c index d53a25df7..26f5603d7 100644 --- a/libhb/deca52.c +++ b/libhb/deca52.c @@ -308,9 +308,7 @@ static int deca52BSInfo( hb_work_object_t *w, const hb_buffer_t *b, if( rate == old_rate && bitrate == old_bitrate ) { break; - } else { - hb_log( "AC3 sync didn't return the same values two times in a row, still looking" ); - } + } } old_rate = rate; |