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
cbs_h265: Fix reading of unknown parameter set extension data
tags/n4.0
Mark Thompson
8 years ago
parent
30645174e3
commit
f763489364
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
libavcodec/cbs_h265_syntax_template.c
+ 2
- 1
libavcodec/cbs_h265_syntax_template.c
View File
@@ -67,7 +67,8 @@ static int FUNC(extension_data)(CodedBitstreamContext *ctx, RWContext *rw,
BitstreamContext start;
uint8_t bit;
start = *rw;
for (k = 0; cbs_h2645_read_more_rbsp_data(rw); k++);
for (k = 0; cbs_h2645_read_more_rbsp_data(rw); k++)
bitstream_skip(rw, 1);
current->bit_length = k;
if (k > 0) {
*rw = start;
Write
Preview
Loading…
Cancel
Save