diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2014-03-16 17:32:05 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-03-16 17:32:05 +0100 |
commit | 922d036ae7ea1d6d6b0a193b8930ce5972ee1b68 (patch) | |
tree | fd5cfc5851a5578c087d18fd64bdcdd30c368649 /omx/gstomxh264enc.c | |
parent | e55bf0a4c5d5936cd45c377d3369721bd140ce58 (diff) |
omxh264enc: Fix compiler warnings
Diffstat (limited to 'omx/gstomxh264enc.c')
-rwxr-xr-x | omx/gstomxh264enc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/omx/gstomxh264enc.c b/omx/gstomxh264enc.c index b5c14eb..3c49cd9 100755 --- a/omx/gstomxh264enc.c +++ b/omx/gstomxh264enc.c @@ -254,7 +254,8 @@ gst_omx_h264_enc_set_format (GstOMXVideoEnc * enc, GstOMXPort * port, } GST_DEBUG_OBJECT (self, "default nPFrames:%u, nIDRPeriod:%u", - config_avcintraperiod.nPFrames, config_avcintraperiod.nIDRPeriod); + (guint) config_avcintraperiod.nPFrames, + (guint) config_avcintraperiod.nIDRPeriod); if (self->periodicty_idr != GST_OMX_H264_VIDEO_ENC_PERIODICITY_OF_IDR_FRAMES_DEFAULT) { |