hornetseye-xorg 1.0.8 → 1.0.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 560e997aa39f5ed35b92d4437c7bf995af0c393c
4
- data.tar.gz: 81315dc943d3b96b53cc50c7218917d8361d277b
3
+ metadata.gz: 2ca1b0e4d5b56c44fe7a3cb1b6e09fc5a3d3b82f
4
+ data.tar.gz: 8186996d6645ec31c80d4fee4608e9efae1ff9bf
5
5
  SHA512:
6
- metadata.gz: 13ec962a14bcaba471cd013c21a9c7dce6e6c20a14614ee2d55d767b0519ced17ea5f2f10337452294da7087a469fa8e464d523e502ed42d368c28a19ac8da80
7
- data.tar.gz: 2f069c8a9841e050d1e8a500d963abc153b236c9d946ad212f7a8b1f4665a59824be0cdf6ddde23b57458894f3eab89d7ee78b7f4f1e085e59da02a6ea03004b
6
+ metadata.gz: d000ff4f9c32c72021d16735fbdafdf695ef61ee6207483bad57b1ddd711d4e72259796355ab51de8b5e5bda2a6e321dd324781139e680d62f5118af8a3c9fe2
7
+ data.tar.gz: 04be099369d68f83b720589aa2ce6056457a7d2beabc458d69bc8cabe2b68b80426e3bada567a746a29d13c3c6ddfec891c961b019cbc76b72fd1d5a98dd97a0
data/config.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'rake'
2
2
 
3
3
  PKG_NAME = 'hornetseye-xorg'
4
- PKG_VERSION = '1.0.8'
4
+ PKG_VERSION = '1.0.9'
5
5
  CFG = RbConfig::CONFIG
6
6
  CXX = ENV[ 'CXX' ] || 'g++'
7
7
  RB_FILES = ['config.rb'] + FileList[ 'lib/**/*.rb' ]
@@ -76,8 +76,8 @@ void XImagePainter::paint( bool ) throw (Error)
76
76
  boost::shared_array< unsigned char > array
77
77
  ( new unsigned char[ m_window->width() * m_window->height() * 4 ] );
78
78
  SwsContext *swsContext =
79
- sws_getContext( frame->width(), frame->height(), PIX_FMT_RGB24,
80
- m_window->width(), m_window->height(), PIX_FMT_BGRA,
79
+ sws_getContext( frame->width(), frame->height(), AV_PIX_FMT_RGB24,
80
+ m_window->width(), m_window->height(), AV_PIX_FMT_BGRA,
81
81
  SWS_POINT, 0, 0, 0 );
82
82
  uint8_t *sourceData[4];
83
83
  int sourceLineSize[4];
@@ -177,8 +177,8 @@ FramePtr XVideoImagePainter::alignYV12( FramePtr frame )
177
177
  destLineSize[0] = m_xvImage->pitches[0];
178
178
  destLineSize[1] = m_xvImage->pitches[2];
179
179
  destLineSize[2] = m_xvImage->pitches[1];
180
- SwsContext *swsContext = sws_getContext( width, height, PIX_FMT_YUV420P,
181
- width, height, PIX_FMT_YUV420P,
180
+ SwsContext *swsContext = sws_getContext( width, height, AV_PIX_FMT_YUV420P,
181
+ width, height, AV_PIX_FMT_YUV420P,
182
182
  SWS_FAST_BILINEAR, 0, 0, 0 );
183
183
  sws_scale( swsContext, sourceData, sourceLineSize, 0,
184
184
  height, destData, destLineSize );
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hornetseye-xorg
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.8
4
+ version: 1.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Wedekind
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-15 00:00:00.000000000 Z
11
+ date: 2017-03-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: malloc