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
lavf/hevc: pad the RBSP buffer as required by the bistream reader
tags/n2.8
Anton Khirnov
10 years ago
parent
1761ab838c
commit
0e7c0ec344
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/hevc.c
+ 1
- 1
libavformat/hevc.c
View File
@@ -636,7 +636,7 @@ static uint8_t *nal_unit_extract_rbsp(const uint8_t *src, uint32_t src_len,
uint8_t *dst;
uint8_t *dst;
uint32_t i, len;
uint32_t i, len;
dst = av_malloc(src_len);
dst = av_malloc(src_len
+ FF_INPUT_BUFFER_PADDING_SIZE
);
if (!dst)
if (!dst)
return NULL;
return NULL;
Write
Preview
Loading…
Cancel
Save