mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
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
1 changed files with 1 additions and 1 deletions
|
@ -2750,7 +2750,7 @@ h265_video_type_find (GstTypeFind * tf, gpointer unused)
|
|||
seen_sps = TRUE;
|
||||
else if (nut == 34)
|
||||
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 */
|
||||
/* we are not counting the reserved IRAP pictures (22 and 23) to good */
|
||||
seen_irap = TRUE;
|
||||
|
|
Loading…
Reference in a new issue