Commit 0eb83694 authored by Philip Langdale's avatar Philip Langdale

crystalhd: Keep NOPTS_VALUE so we know it's not there.

parent 13dbf77b
...@@ -848,8 +848,7 @@ static int crystalhd_decode_packet(AVCodecContext *avctx, const AVPacket *avpkt) ...@@ -848,8 +848,7 @@ static int crystalhd_decode_packet(AVCodecContext *avctx, const AVPacket *avpkt)
* avoiding mangling so we need to build a mapping to values * avoiding mangling so we need to build a mapping to values
* we know will not be mangled. * we know will not be mangled.
*/ */
int64_t safe_pts = avpkt->pts == AV_NOPTS_VALUE ? 0 : avpkt->pts; uint64_t pts = opaque_list_push(priv, avpkt->pts);
uint64_t pts = opaque_list_push(priv, safe_pts);
if (!pts) { if (!pts) {
ret = AVERROR(ENOMEM); ret = AVERROR(ENOMEM);
goto exit; goto exit;
......
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