[FFmpeg-cvslog] r12897 - trunk/libavcodec/ac3_parser.c
michael
subversion
Sat Apr 19 04:29:27 CEST 2008
Author: michael
Date: Sat Apr 19 04:29:27 2008
New Revision: 12897
Log:
Part 2 of EAC3 support, this is still disabled as it breaks regressions
due to bugs elsewhere.
Modified:
trunk/libavcodec/ac3_parser.c
Modified: trunk/libavcodec/ac3_parser.c
==============================================================================
--- trunk/libavcodec/ac3_parser.c (original)
+++ trunk/libavcodec/ac3_parser.c Sat Apr 19 04:29:27 2008
@@ -140,8 +140,8 @@ static int ac3_sync(uint64_t state, AACA
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;
}
More information about the ffmpeg-cvslog
mailing list