mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
25 lines
847 B
Diff
25 lines
847 B
Diff
From 73fde6f9f3d01f7fc0f3ae4b66f6c725f9fb1105 Mon Sep 17 00:00:00 2001
|
|
From: Hendrik Leppkes <h.leppkes@gmail.com>
|
|
Date: Mon, 1 Sep 2014 11:39:09 +0200
|
|
Subject: [PATCH] h264_parser: force grabing a new timestamp until a frame
|
|
start was found
|
|
|
|
---
|
|
libavcodec/h264_parser.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/libavcodec/h264_parser.c b/libavcodec/h264_parser.c
|
|
index 2fd3f2b..7165652 100644
|
|
--- a/libavcodec/h264_parser.c
|
|
+++ b/libavcodec/h264_parser.c
|
|
@@ -525,6 +525,9 @@ static int h264_parse(AVCodecParserContext *s,
|
|
} else {
|
|
next = h264_find_frame_end(p, buf, buf_size);
|
|
|
|
+ if (next == END_NOT_FOUND && pc->frame_start_found == 0)
|
|
+ s->fetch_timestamp = 1;
|
|
+
|
|
if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
|
|
*poutbuf = NULL;
|
|
*poutbuf_size = 0;
|