Browse Source

Merge commit 'f9ab4fe1f7c1e9d410ca5ee2c9ff8d2892aad068'

* commit 'f9ab4fe1f7c1e9d410ca5ee2c9ff8d2892aad068':
  h264: Discard currently unsupported registered sei

Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
tags/n2.8
Hendrik Leppkes 9 years ago
parent
commit
a4c13f95fb
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      libavcodec/h264_sei.c

+ 6
- 0
libavcodec/h264_sei.c View File

@@ -180,6 +180,12 @@ static int decode_registered_user_data_closed_caption(H264Context *h, int size)
skip_bits(&h->gb, 8); // marker_bits
}
}
} else {
int i;
avpriv_request_sample(h->avctx, "Subtitles with data type 0x%02x",
user_data_type_code);
for (i = 0; i < size - 1; i++)
skip_bits(&h->gb, 8);
}

return 0;


Loading…
Cancel
Save