summaryrefslogtreecommitdiffstats
path: root/libvideoeditor
diff options
context:
space:
mode:
authorJames Dong <jdong@google.com>2012-01-23 15:39:19 -0800
committerJames Dong <jdong@google.com>2012-01-23 15:41:13 -0800
commiteedda3071755b2dcf851bca8bed610de18a91d01 (patch)
tree8d42f46d1b27b4f6d72fa668ec2d5ef5fa8bf5d8 /libvideoeditor
parent6f9028e5fd2f4dae3068c07bcb5221c5e7c515fa (diff)
downloadframeworks_av-eedda3071755b2dcf851bca8bed610de18a91d01.zip
frameworks_av-eedda3071755b2dcf851bca8bed610de18a91d01.tar.gz
frameworks_av-eedda3071755b2dcf851bca8bed610de18a91d01.tar.bz2
Fix an error that missed an "=" for equality in an if statement
Change-Id: Ib566226b427f5357d52c7b9c0742afa05fdd3a84
Diffstat (limited to 'libvideoeditor')
-rwxr-xr-xlibvideoeditor/vss/mcs/src/M4MCS_API.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvideoeditor/vss/mcs/src/M4MCS_API.c b/libvideoeditor/vss/mcs/src/M4MCS_API.c
index d75a495..3844630 100755
--- a/libvideoeditor/vss/mcs/src/M4MCS_API.c
+++ b/libvideoeditor/vss/mcs/src/M4MCS_API.c
@@ -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)) {