Commit 8d51d10e authored by Clément Bœsch's avatar Clément Bœsch

lavc/samidec: properly raise errors from sami_paragraph_to_ass()

parent 61bbc537
...@@ -138,9 +138,12 @@ static int sami_decode_frame(AVCodecContext *avctx, ...@@ -138,9 +138,12 @@ static int sami_decode_frame(AVCodecContext *avctx,
const char *ptr = avpkt->data; const char *ptr = avpkt->data;
SAMIContext *sami = avctx->priv_data; SAMIContext *sami = avctx->priv_data;
if (ptr && avpkt->size > 0 && !sami_paragraph_to_ass(avctx, ptr)) { if (ptr && avpkt->size > 0) {
int ret = sami_paragraph_to_ass(avctx, ptr);
if (ret < 0)
return ret;
// TODO: pass escaped sami->encoded_source.str as source // TODO: pass escaped sami->encoded_source.str as source
int ret = ff_ass_add_rect(sub, sami->full.str, sami->readorder++, 0, NULL, NULL); ret = ff_ass_add_rect(sub, sami->full.str, sami->readorder++, 0, NULL, NULL);
if (ret < 0) if (ret < 0)
return ret; return ret;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment