summaryrefslogtreecommitdiff
path: root/libavcodec/h264_sei.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2020-08-07 16:04:24 -0300
committerJames Almer <jamrial@gmail.com>2020-08-15 13:01:13 -0300
commitc93ba51ef3e2d83428360bd784166343145e7a3f (patch)
treeaa09d88c556d1b06393c0fdcc4bc569b14361387 /libavcodec/h264_sei.c
parent6c1bf7c02e8ec5f3c0a432774373ba0e8448e499 (diff)
avcodec/h264_sei: use ff_parse_a53_cc() to parse A53 Closed Captions
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/h264_sei.c')
-rw-r--r--libavcodec/h264_sei.c48
1 files changed, 2 insertions, 46 deletions
diff --git a/libavcodec/h264_sei.c b/libavcodec/h264_sei.c
index 7b8e6bd7ba..669560ae5f 100644
--- a/libavcodec/h264_sei.c
+++ b/libavcodec/h264_sei.c
@@ -25,6 +25,7 @@
* @author Michael Niedermayer <michaelni@gmx.at>
*/
+#include "atsc_a53.h"
#include "avcodec.h"
#include "get_bits.h"
#include "golomb.h"
@@ -173,55 +174,10 @@ static int decode_registered_user_data_closed_caption(H264SEIA53Caption *h,
GetBitContext *gb, void *logctx,
int size)
{
- int flag;
- int user_data_type_code;
- int cc_count;
-
if (size < 3)
return AVERROR(EINVAL);
- user_data_type_code = get_bits(gb, 8);
- if (user_data_type_code == 0x3) {
- skip_bits(gb, 1); // reserved
-
- flag = get_bits(gb, 1); // process_cc_data_flag
- if (flag) {
- skip_bits(gb, 1); // zero bit
- cc_count = get_bits(gb, 5);
- skip_bits(gb, 8); // reserved
- size -= 2;
-
- if (cc_count && size >= cc_count * 3) {
- int old_size = h->buf_ref ? h->buf_ref->size : 0;
- const uint64_t new_size = (old_size + cc_count
- * UINT64_C(3));
- int i, ret;
-
- if (new_size > INT_MAX)
- return AVERROR(EINVAL);
-
- /* Allow merging of the cc data from two fields. */
- ret = av_buffer_realloc(&h->buf_ref, new_size);
- if (ret < 0)
- return ret;
-
- /* Use of av_buffer_realloc assumes buffer is writeable */
- for (i = 0; i < cc_count; i++) {
- h->buf_ref->data[old_size++] = get_bits(gb, 8);
- h->buf_ref->data[old_size++] = get_bits(gb, 8);
- h->buf_ref->data[old_size++] = get_bits(gb, 8);
- }
-
- skip_bits(gb, 8); // marker_bits
- }
- }
- } else {
- int i;
- for (i = 0; i < size - 1; i++)
- skip_bits(gb, 8);
- }
-
- return 0;
+ return ff_parse_a53_cc(&h->buf_ref, gb->buffer + get_bits_count(gb) / 8, size);
}
static int decode_registered_user_data(H264SEIContext *h, GetBitContext *gb,