Browse Source

Fix a regression in the dca parser introduced by dts express support.

The dca parser needs to check that the framesize is actually of a complete
frame, and not of a partial DTS-HD frame, which is not constant size, and
thus the check would fail.
(cherry picked from commit ebc0ccb9af)

Review-by: Benjamin Larsson
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.9
Hendrik Leppkes Michael Niedermayer 14 years ago
parent
commit
022d22e581
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavcodec/dca_parser.c

+ 2
- 1
libavcodec/dca_parser.c View File

@@ -74,7 +74,8 @@ static int dca_find_frame_end(DCAParseContext * pc1, const uint8_t * buf,
if (IS_MARKER(state, i, buf, buf_size) && (state == pc1->lastmarker || pc1->lastmarker == DCA_HD_MARKER)) {
if(pc1->framesize > pc1->size)
continue;
if(!pc1->framesize){
// We have to check that we really read a full frame here, and that it isn't a pure HD frame, because their size is not constant.
if(!pc1->framesize && state == pc1->lastmarker && state != DCA_HD_MARKER){
pc1->framesize = pc1->hd_pos ? pc1->hd_pos : pc1->size;
}
pc->frame_start_found = 0;


Loading…
Cancel
Save