Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKieran Kunhya <kierank@obe.tv>2018-08-17 17:12:14 +0300
committerJosh de Kock <josh@itanimul.li>2018-08-17 18:24:19 +0300
commitc85852d3de636d18b41c4e5fdcdbc18bde7f3b1f (patch)
treee00be118dd028eea576b14292a7dd646804a5da6 /libavcodec/h264_sei.h
parentf631c328e680a3dd491936b92f69970c20cdcfc7 (diff)
h264: Support multi-field closed captions by using AVBufferRef and not resetting per field
Signed-off-by: Josh de Kock <joshdk@obe.tv>
Diffstat (limited to 'libavcodec/h264_sei.h')
-rw-r--r--libavcodec/h264_sei.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/h264_sei.h b/libavcodec/h264_sei.h
index a169a10e49..5b7c8ef9d8 100644
--- a/libavcodec/h264_sei.h
+++ b/libavcodec/h264_sei.h
@@ -95,8 +95,7 @@ typedef struct H264SEIAFD {
} H264SEIAFD;
typedef struct H264SEIA53Caption {
- int a53_caption_size;
- uint8_t *a53_caption;
+ AVBufferRef *buf_ref;
} H264SEIA53Caption;
typedef struct H264SEIUnregistered {