diff mbox

[FFmpeg-devel,3/4] avcodec/dvdsub_parser: Init output buf/size

Message ID 20180713172640.19675-3-michael@niedermayer.cc
State Accepted
Commit 9e6c8437761661441d836876934314cb2b8fafe7
Headers show

Commit Message

Michael Niedermayer July 13, 2018, 5:26 p.m. UTC
No testcase

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
---
 libavcodec/dvdsub_parser.c | 3 +++
 1 file changed, 3 insertions(+)

Comments

Michael Niedermayer July 15, 2018, 5:44 p.m. UTC | #1
On Fri, Jul 13, 2018 at 07:26:39PM +0200, Michael Niedermayer wrote:
> No testcase
> 
> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
> ---
>  libavcodec/dvdsub_parser.c | 3 +++
>  1 file changed, 3 insertions(+)

will apply

[...]
diff mbox

Patch

diff --git a/libavcodec/dvdsub_parser.c b/libavcodec/dvdsub_parser.c
index 32a945ed65..8e1c48bef6 100644
--- a/libavcodec/dvdsub_parser.c
+++ b/libavcodec/dvdsub_parser.c
@@ -44,6 +44,9 @@  static int dvdsub_parse(AVCodecParserContext *s,
 {
     DVDSubParseContext *pc = s->priv_data;
 
+    *poutbuf      = buf;
+    *poutbuf_size = buf_size;
+
     if (pc->packet_index == 0) {
         if (buf_size < 2 || AV_RB16(buf) && buf_size < 6) {
             if (buf_size)