diff ac3_parser.c @ 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 4d04fcb5e1e4
children abc8176ddf88
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;
 }