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
mpegps_probe: make buffer related pointers const
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer
13 years ago
parent
e1f9432644
commit
c3cb338955
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/mpeg.c
+ 1
- 1
libavformat/mpeg.c
View File
@@ -36,7 +36,7 @@
#define MAX_SYNC_SIZE 100000
static int check_pes(uint8_t *p, uint8_t *end){
static int check_pes(
const
uint8_t *p,
const
uint8_t *end){
int pes1;
int pes2= (p[3] & 0xC0) == 0x80
&& (p[4] & 0xC0) != 0x40
Write
Preview
Loading…
Cancel
Save