Mercurial > libavcodec.hg
changeset 6645:83f805f7a854 libavcodec
Part 2 of EAC3 support, this is still disabled as it breaks regressions
due to bugs elsewhere.
author | michael |
---|---|
date | Sat, 19 Apr 2008 02:29:27 +0000 |
parents | 1d9eb7c09f98 |
children | 7ca428109684 |
files | ac3_parser.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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; }