summaryrefslogtreecommitdiffstats
path: root/src/gallium/state_trackers/omx
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2014-09-02 09:39:24 +1000
committerDave Airlie <airlied@redhat.com>2014-09-03 07:58:58 +1000
commit2b24e5831048727071a5e0359e1eb1f589d45cfb (patch)
tree0931d6905177683c43170659e2cda176a27396bd /src/gallium/state_trackers/omx
parentf4ccf687a678919920ceed5f2a5892c8870e5f30 (diff)
downloadexternal_mesa3d-2b24e5831048727071a5e0359e1eb1f589d45cfb.zip
external_mesa3d-2b24e5831048727071a5e0359e1eb1f589d45cfb.tar.gz
external_mesa3d-2b24e5831048727071a5e0359e1eb1f589d45cfb.tar.bz2
omx/h264: remove stray semicolon after if
Coverity reported this, looks wrong to me. Reviewed-by: Christian König <christian.koenig@amd.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/gallium/state_trackers/omx')
-rw-r--r--src/gallium/state_trackers/omx/vid_dec_h264.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/omx/vid_dec_h264.c b/src/gallium/state_trackers/omx/vid_dec_h264.c
index 7f1c2fa..7b57785 100644
--- a/src/gallium/state_trackers/omx/vid_dec_h264.c
+++ b/src/gallium/state_trackers/omx/vid_dec_h264.c
@@ -681,7 +681,7 @@ static void slice_header(vid_dec_PrivateType *priv, struct vl_rbsp *rbsp,
if (priv->picture.h264.field_pic_flag) {
unsigned bottom_field_flag = vl_rbsp_u(rbsp, 1);
- if (bottom_field_flag != priv->picture.h264.bottom_field_flag);
+ if (bottom_field_flag != priv->picture.h264.bottom_field_flag)
vid_dec_h264_EndFrame(priv);
priv->picture.h264.bottom_field_flag = bottom_field_flag;