mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
MPEGTS: Improve probe function
When a sync byte is found, check that transport_error_indicator is zero, and adaptation_field_control is valid (non-zero). Originally committed as revision 14274 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
5469b788ea
commit
c6002ea14d
@ -347,8 +347,8 @@ static int analyze(const uint8_t *buf, int size, int packet_size, int *index){
|
|||||||
|
|
||||||
memset(stat, 0, packet_size*sizeof(int));
|
memset(stat, 0, packet_size*sizeof(int));
|
||||||
|
|
||||||
for(x=i=0; i<size; i++){
|
for(x=i=0; i<size-3; i++){
|
||||||
if(buf[i] == 0x47){
|
if(buf[i] == 0x47 && !(buf[i+1] & 0x80) && (buf[i+3] & 0x30)){
|
||||||
stat[x]++;
|
stat[x]++;
|
||||||
if(stat[x] > best_score){
|
if(stat[x] > best_score){
|
||||||
best_score= stat[x];
|
best_score= stat[x];
|
||||||
|
Loading…
Reference in New Issue
Block a user