OSDN Git Service

Fix an error that missed an "=" for equality in an if statement
authorJames Dong <jdong@google.com>
Mon, 23 Jan 2012 23:39:19 +0000 (15:39 -0800)
committerJames Dong <jdong@google.com>
Mon, 23 Jan 2012 23:41:13 +0000 (15:41 -0800)
Change-Id: Ib566226b427f5357d52c7b9c0742afa05fdd3a84

libvideoeditor/vss/mcs/src/M4MCS_API.c

index d75a495..3844630 100755 (executable)
@@ -8866,7 +8866,7 @@ static M4OSA_ERR M4MCS_intVideoNullEncoding( M4MCS_InternalContext *pC )
     }
 
 
-    if ((pC->EncodingVideoFormat = M4ENCODER_kNULL)
+    if ((pC->EncodingVideoFormat == M4ENCODER_kNULL)
         && (pC->bLastDecodedFrameCTS == M4OSA_FALSE)
         && (pC->uiBeginCutTime > 0)) {