typefind: correct the condition for irap flag
https://bugzilla.gnome.org/show_bug.cgi?id=736779
This commit is contained in:
parent
52e97f59ba
commit
cf98138c7e
@ -2750,7 +2750,7 @@ h265_video_type_find (GstTypeFind * tf, gpointer unused)
|
|||||||
seen_sps = TRUE;
|
seen_sps = TRUE;
|
||||||
else if (nut == 34)
|
else if (nut == 34)
|
||||||
seen_pps = TRUE;
|
seen_pps = TRUE;
|
||||||
else if (nut >= 16 || nut <= 21) {
|
else if (nut >= 16 && nut <= 21) {
|
||||||
/* BLA, IDR and CRA pictures are belongs to be IRAP picture */
|
/* BLA, IDR and CRA pictures are belongs to be IRAP picture */
|
||||||
/* we are not counting the reserved IRAP pictures (22 and 23) to good */
|
/* we are not counting the reserved IRAP pictures (22 and 23) to good */
|
||||||
seen_irap = TRUE;
|
seen_irap = TRUE;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user