This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
vp9_parser: don't overwrite cached timestamps with nopts.
tags/n3.0
Ronald S. Bultje
10 years ago
parent
6dc0db6634
commit
63fca9df9c
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/vp9_parser.c
+ 1
- 1
libavcodec/vp9_parser.c
View File
@@ -64,7 +64,7 @@ static int parse_frame(AVCodecParserContext *ctx, const uint8_t *buf, int size)
if (ctx->pts == AV_NOPTS_VALUE)
ctx->pts = s->pts;
s->pts = AV_NOPTS_VALUE;
} else {
} else
if (ctx->pts != AV_NOPTS_VALUE)
{
s->pts = ctx->pts;
ctx->pts = AV_NOPTS_VALUE;
}
Write
Preview
Loading…
Cancel
Save