Kaydet (Commit) 116fdcfa authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror,-Wsign-compare

Change-Id: Id240e2eb51e3ac40f13f813386a21e97ab1e9ff1
üst 76bc4382
...@@ -158,7 +158,7 @@ uno::Reference< graphic::XGraphic > SAL_CALL FrameGrabber::grabFrame( double fMe ...@@ -158,7 +158,7 @@ uno::Reference< graphic::XGraphic > SAL_CALL FrameGrabber::grabFrame( double fMe
#ifdef AVMEDIA_GST_0_10 #ifdef AVMEDIA_GST_0_10
GST_BUFFER_SIZE( pBuf ) >= static_cast<unsigned>( nWidth * nHeight * 3 ) GST_BUFFER_SIZE( pBuf ) >= static_cast<unsigned>( nWidth * nHeight * 3 )
#else #else
gst_buffer_get_size( pBuf ) >= ( nWidth * nHeight * 3 ) gst_buffer_get_size( pBuf ) >= static_cast<unsigned>( nWidth * nHeight * 3 )
#endif #endif
) )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment