hornetseye-frame 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/config.rb +1 -1
- data/ext/colourspace.cc +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ad24f11ea347c06a805829e789b500c0ece713da
|
|
4
|
+
data.tar.gz: c8198dd0d2431597e58f354da54a29d31844e74c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1dad1388396b4e650ea01f6d774c403035efa18c0d4f2d609f1db1269212c86390b36a5ba59450be4df57c6bdd23b3e933089af1db617e0e340405cab667b69b
|
|
7
|
+
data.tar.gz: 5192aca47175977bff6449df45e45d100a30a4381fabd1c9fbcf95156417cb47d37fec7ae770b3e12a14b4a742ba060418abd577669578e475a0a94946e8b15f
|
data/config.rb
CHANGED
data/ext/colourspace.cc
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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.
|
|
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:
|
|
11
|
+
date: 2017-03-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: malloc
|