diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-02-20 11:51:12 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-02-20 11:51:12 +0000 |
| commit | dc08d2da6bf14fd469005ea3512992c66b041da9 (patch) | |
| tree | 0bd7a60cfa4cfe21732f648ed25299db79e7920a /src/tools/wscript | |
| parent | 490af0bac5ec51120f6fed9c5b8b1a0c01427e45 (diff) | |
Fix servomatic build. Hopefully resolve confusion wrt linesize and
stride for FilterBufferImage; the linesize can apparently sometimes
be (slightly) larger than the width for byte-per-pixel images (e.g.
YUV420P). Remove grotty peek-style socket communication and use a
hopefully more robust send of the length of data as a binary word
before the data itself. Should fix #62.
Diffstat (limited to 'src/tools/wscript')
| -rw-r--r-- | src/tools/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/wscript b/src/tools/wscript index 5a837f845..c843c61d8 100644 --- a/src/tools/wscript +++ b/src/tools/wscript @@ -1,5 +1,5 @@ def build(bld): - for t in ['makedcp', 'servomatic_cli']: + for t in ['makedcp', 'servomatic_cli', 'servomatictest']: obj = bld(features = 'cxx cxxprogram') obj.uselib = 'BOOST_THREAD OPENJPEG DCP AVFORMAT AVFILTER AVCODEC AVUTIL SWSCALE POSTPROC' obj.includes = ['..'] |
