Skip to content
Snippets Groups Projects
Commit 3ad21c50 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avformat/h263dec/h263_probe: Check PSC bit 9 and 13 in

parent 04b15a60
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,11 @@ static int h263_probe(AVProbeData *p)
&& src_fmt<6)
res_change++;
if (src_fmt != 7 && !(code&(1<<9)) && (code&(1<<5))) {
invalid_psc++;
continue;
}
if((code&0x30000)==0x20000 && src_fmt){
valid_psc++;
last_gn=0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment