hornetseye-frame 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/config.rb +1 -1
  3. data/ext/colourspace.cc +3 -3
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 29495e6c3b5616e208a0353330dd10f826a4b6f5
4
- data.tar.gz: 05dd010ffa519183823762b6605c361816c7edb7
3
+ metadata.gz: ad24f11ea347c06a805829e789b500c0ece713da
4
+ data.tar.gz: c8198dd0d2431597e58f354da54a29d31844e74c
5
5
  SHA512:
6
- metadata.gz: e60496e5ddd1e71771dca2bff9a89e2cb296a2fe2e57c2a687ceda0b44f37f4cfb1474a7e424c1004ebb3e5b37ac2161a727a069d3573613956d448ab39a44a3
7
- data.tar.gz: 2fd4d88d87d4d52a1932e614e98ee50aae649d922121cac9d3715d9f9c0c9e3919892e2b3dea965028274e042fdfcac1d1bbb8e1ca1a4d350622d875f96aa7ed
6
+ metadata.gz: 1dad1388396b4e650ea01f6d774c403035efa18c0d4f2d609f1db1269212c86390b36a5ba59450be4df57c6bdd23b3e933089af1db617e0e340405cab667b69b
7
+ data.tar.gz: 5192aca47175977bff6449df45e45d100a30a4381fabd1c9fbcf95156417cb47d37fec7ae770b3e12a14b4a742ba060418abd577669578e475a0a94946e8b15f
data/config.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'rake'
2
2
 
3
3
  PKG_NAME = 'hornetseye-frame'
4
- PKG_VERSION = '1.1.1'
4
+ PKG_VERSION = '1.1.2'
5
5
  CFG = RbConfig::CONFIG
6
6
  CXX = ENV[ 'CXX' ] || 'g++'
7
7
  RB_FILES = ['config.rb'] + FileList[ 'lib/**/*.rb' ]
@@ -29,7 +29,7 @@ extern "C" {
29
29
  using namespace std;
30
30
 
31
31
  static void setupFormat( const string &typecode, int width, int height, char *memory,
32
- enum PixelFormat *format,
32
+ enum AVPixelFormat *format,
33
33
  uint8_t **data, int *lineSize ) throw (Error)
34
34
  {
35
35
  if ( typecode == "UBYTE" ) {
@@ -94,14 +94,14 @@ FramePtr frameToType( const FramePtr in, const string &target ) throw (Error)
94
94
  width = in->width(),
95
95
  height = in->height();
96
96
  FramePtr retVal( new Frame( target, width, height ) );
97
- enum PixelFormat sourceFormat;
97
+ enum AVPixelFormat sourceFormat;
98
98
  uint8_t *sourceData[8];
99
99
  memset(sourceData, 0, sizeof(sourceData));
100
100
  int sourceLineSize[8];
101
101
  memset(sourceLineSize, 0, sizeof(sourceLineSize));
102
102
  setupFormat( in->typecode(), width, height, in->data(),
103
103
  &sourceFormat, &sourceData[0], &sourceLineSize[0] );
104
- enum PixelFormat destFormat;
104
+ enum AVPixelFormat destFormat;
105
105
  uint8_t *destData[8];
106
106
  memset(destData, 0, sizeof(destData));
107
107
  int destLineSize[8];
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hornetseye-frame
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
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-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: malloc