# HG changeset patch # User michael # Date 1208572167 0 # Node ID 83f805f7a854fe1c68782f6537c043d4135a66b8 # Parent 1d9eb7c09f98ee2820c1e2b18fec7e74d1f96d85 Part 2 of EAC3 support, this is still disabled as it breaks regressions due to bugs elsewhere. diff -r 1d9eb7c09f98 -r 83f805f7a854 ac3_parser.c --- a/ac3_parser.c Sat Apr 19 02:28:24 2008 +0000 +++ b/ac3_parser.c Sat Apr 19 02:29:27 2008 +0000 @@ -140,8 +140,8 @@ hdr_info->channels = hdr.channels; hdr_info->samples = AC3_FRAME_SIZE; - *need_next_header = 0; - *new_frame_start = 1; + *need_next_header = 0;//(hdr.frame_type != EAC3_FRAME_TYPE_AC3_CONVERT); + *new_frame_start = 1;//(hdr.frame_type != EAC3_FRAME_TYPE_DEPENDENT); return hdr.frame_size; }