[MPlayer-cvslog] r37653 - trunk/libmpdemux/video.c

reimar subversion at mplayerhq.hu
Tue Feb 9 23:56:41 CET 2016


Author: reimar
Date: Tue Feb  9 23:56:40 2016
New Revision: 37653

Log:
video.c: Fix || when && was meant in HEVC splitter.

Modified:
   trunk/libmpdemux/video.c

Modified: trunk/libmpdemux/video.c
==============================================================================
--- trunk/libmpdemux/video.c	Tue Feb  9 23:51:57 2016	(r37652)
+++ trunk/libmpdemux/video.c	Tue Feb  9 23:56:40 2016	(r37653)
@@ -576,7 +576,7 @@ int video_read_frame(sh_video_t* sh_vide
 
           i = (i >> 1) & 0x3f;
           if (in_picture) {
-            if ((i >= 32 && i <= 35) || i == 39 || (i >= 41 && i <= 44) || (i >= 48 || i <= 55)) break;
+            if ((i >= 32 && i <= 35) || i == 39 || (i >= 41 && i <= 44) || (i >= 48 && i <= 55)) break;
             if (i <= 9 || (i >= 16 && i <= 21)) {
               // TODO: check first slice segment flag - need to peek 2 bytes ahead
 //              if (demux_peekc(d_video) & 0x80)


More information about the MPlayer-cvslog mailing list