Browse Source

h264: do not discard NAL_SEI when skipping frames

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.1
Rainer Hochecker Michael Niedermayer 12 years ago
parent
commit
7d75fb381b
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      libavcodec/h264.c

+ 1
- 2
libavcodec/h264.c View File

@@ -4757,8 +4757,7 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size,
first_slice = hx->nal_unit_type;
}

// FIXME do not discard SEI id
if (avctx->skip_frame >= AVDISCARD_NONREF && h->nal_ref_idc == 0)
if (avctx->skip_frame >= AVDISCARD_NONREF && h->nal_ref_idc == 0 && h->nal_unit_type != NAL_SEI)
continue;

again:


Loading…
Cancel
Save