Commit Graph

70 Commits

Author SHA1 Message Date
Martin Piatka
b2c79c2fda tools/Makefile: Remove sse4.1 flag
So that compilation on ARM keeps working
2024-07-02 12:56:57 +02:00
Karel Šebela
3cde2f1ba0 pixfmt_conv.c: RGB <-> RGBA SIMD
Reduces time per 4k frame from 9 ms to about 5 ms.
2024-07-02 12:56:16 +02:00
Martin Pulec
c7bc7962aa tools/Makefile: moved "all" as a first rule
to rum `make all` as a default target (without arguments to make)
2024-03-22 16:24:01 +01:00
Martin Pulec
d3f0802e53 tools/stacktrace_addr2line.sh fixed parsing
backtrace_symbols has slightly different output than backtrace_symbols_fd:
```./build/bin/uv(+0x24d92)[0x7b9c947ad92]```

In the first, there is a space between `(+0x24d92)` and `[0x7b9c947ad92]`:
```./build/bin/uv(+0x24d92) [0x7b9c947ad92]```

so support both syntaxes (the absolute address is ignored anyways,
there were just missing quotes around a variable)
2023-11-13 16:48:22 +01:00
Martin Pulec
c14ad5f95e pixfmt_conv.h: small doxy update
\+ added some direct pixfmt_conv.h includes (in attempt to remove its
inclusion from video_codec.h, which finally didn't take place but still
it is better to include this directly)
2023-11-13 10:27:09 +01:00
Martin Pulec
96373a1e73 tools/convert: support for storing PNM/Y4M 2023-11-09 16:00:21 +01:00
Martin Piatka
b6cf85e855 tools/astat: Variable channel count support 2023-10-11 12:39:08 +02:00
Martin Piatka
1208184187 tools/astat: Add missing include guard 2023-10-11 12:39:08 +02:00
Martin Pulec
9fb2c63257 ipc_frame_unix.cpp: print init errors 2023-08-22 10:47:06 +02:00
Martin Pulec
d17c5ea24c removed platform_time.c + references
get_time_in_ns() should be used instead time_since_epoch_in_ms(). Having
both may be misleading and may lead to errors when interchanged.
2023-08-08 15:32:29 +02:00
Martin Piatka
956e5917d9 ipc_frame_unix: Use unique_ptr instead of raw 2023-07-25 16:47:23 +02:00
Martin Piatka
cb07eb354f ipc_frame: Add _hq version of ipc_frame_from_ug_frame
This version does the pixel conversion first before scaling to avoid
artifacts due to big block size of source pixel format. Significantly
slower.
2023-06-27 15:36:15 +02:00
Martin Piatka
2395f379b8 ipc_frame_ug: Respect horizontal alignment when scaling 2023-06-20 12:17:53 +02:00
Martin Piatka
56a0708343 tools/thumbnailgen: Configurable fps 2023-06-16 13:43:03 +02:00
Martin Piatka
ce2a3eca46 tools/thumbnailgen: Don't busywait for connection 2023-06-16 13:43:02 +02:00
Martin Piatka
2651e5caf5 tools/ipc_frame_unix: Add blocking wait for connect 2023-06-16 13:43:02 +02:00
Martin Piatka
f4360d107d tools/thumbnailgen: Don't reinitialize jpeg ctx on each frame 2023-06-16 13:43:02 +02:00
Martin Piatka
a01475050c tools: Add preview thumbnail generator 2023-06-16 13:43:01 +02:00
Martin Pulec
6ae7f268f0 video_codec: moved pixfmt convs to a separate file
Just the conversions grew to a significant amount so it is better to
split the file to two to keep the general video codec utility functions
in one file and the conversions in the another.
2023-03-16 14:26:22 +01:00
Martin Pulec
bb709aabe1 tools/Makefile updates: build in current directory
Build even UG obj files in tools/ subdirectory if make called there
(because color_out.o builds differently for `convert` and `uv` not to be
used interchangeably).

- supported also out-of-tree build when SRCDIR was passed, eg.:

      mkdir build && cd build
      make -f ../tools/Makefile SRCDIR=.. convert

+ decklink_temperature to gitignore
2022-11-22 14:50:25 +01:00
Martin Pulec
62f143f939 config_common.h: removed macros.h include 2022-11-22 14:50:19 +01:00
Martin Pulec
46c9c04461 tools/convert: help updates
Added basic description & return 0 if help was requested.
2022-11-22 11:49:06 +01:00
Martin Pulec
579389cebc tool/convert: compilation fixes
- moved macros to utils/macros.h (not config_common.h that is not going
  to be included) and include in config_common.h the macros.h file
  instead (later it should be removed)
- avoid dependency of color_out.o on host.o if build outside UG (easiest
  for now)
- compile tools with '-g' (obviously for better debuggability)
2022-11-22 10:34:37 +01:00
Martin Pulec
9135d4fc72 tools/convert: fixed a message 2022-11-22 10:23:04 +01:00
Martin Pulec
22edea5903 tools/convert: print reasonable error error
if eg. input file doesn't exist, something like:

    terminate called after throwing an instance of 'std::__ios_failure'
      what():  basic_ios::clear: iostream error

was presented which isn't much helpful so catch the error and print
textual representation of errno so that the error becomes:

    ERROR: basic_ios::clear: iostream error: No such file or directory
2022-11-22 10:23:04 +01:00
Martin Piatka
8d6b17522d tools/ipc_frame_unix: Initialize winsock 2022-10-18 14:15:06 +02:00
Martin Piatka
f3ce37a188 tools/astat: Standalone parsing func 2022-10-18 12:11:14 +02:00
Martin Piatka
8c37a568ae ipc_frame: remove PLATFORM_TMP_DIR 2022-09-13 13:54:24 +02:00
Martin Pulec
db02374999 tools/convert: added benchmark 2022-08-18 14:21:51 +02:00
Martin Pulec
3d198c168f tools/Makefile +decklink_temperature +clean 2022-08-18 14:08:44 +02:00
Martin Pulec
9f2d8b5029 tools: merged Makefiles
+ fixed compilation of convert (dependency on color_out)
2022-08-17 17:27:43 +02:00
Martin Pulec
b857a0573e tools/README: fixed typos 2022-08-17 17:27:43 +02:00
Martin Piatka
bbd91f7720 ipc_frame_unix: Delete socket files in destructor 2022-08-17 16:10:49 +02:00
Martin Piatka
dd9a53cfd7 ipc_frame_unix: Fix on windows
04c2d245 changed the datatype to the SOCKET type used by the winsock
library. This type is however unsigned, which broke conditions that
assumed invalid socket to be < 0.
2022-08-16 15:13:39 +02:00
Martin Pulec
04c2d245d0 fixed Win compile warnings (from CI) 2022-08-11 10:42:45 +02:00
Martin Pulec
3b4a0d7511 tools/convert: compilation fixes 2022-07-27 10:23:50 +02:00
Martin Piatka
8f04309638 ipc_frame_unix: Handle socket errors 2022-07-25 09:55:26 +02:00
Martin Piatka
94795d3f03 tools/ipc_frame: Fix formating 2022-06-29 15:15:42 +02:00
Martin Piatka
a70d084252 tools/README: Add ipc_frame 2022-06-27 13:37:06 +02:00
Martin Piatka
8291fc64f5 tools/ipc_frame_ug: Add target scale computation helper 2022-06-24 13:38:55 +02:00
Martin Piatka
637e5a317f tools/ipc_frame_unix: platform tmpdir macro 2022-06-24 13:38:54 +02:00
Martin Piatka
061aed4636 tools/ipc_frame: Windows socket compatibilitiy 2022-06-24 13:38:54 +02:00
Martin Piatka
c3acb76399 tools/ipc_frame_unix: Add frame writer 2022-06-24 13:38:52 +02:00
Martin Piatka
12ff07b919 tools: Add ipc frame utils 2022-06-24 13:38:20 +02:00
Martin Piatka
d1a25b588b astat: Don't recompile every time 2022-05-27 11:34:34 +02:00
Martin Pulec
7252557eac added small tool to measure BMD temp.
Most of the DeckLink devices doesn't implement this yet.
2022-05-12 11:48:18 +02:00
Martin Pulec
a8fba13593 Makefile.astat: build with c++ instead of g++
GCC is not always present (eg. in MSYS2 clang env).
2022-03-09 16:09:34 +01:00
Martin Pulec
f59c6e8dba Makefile.convert: fixed misc.cpp path 2022-03-01 16:11:17 +01:00
Martin Pulec
e879f0e44b convert tool compilation fixes 2022-02-25 12:09:22 +01:00
Martin Pulec
e6a92e2cc4 Tool convert: small improvents
- use $(CXX) instead of hard-codec g++ in Makefile.convert
- conversion -> list-conversions + brief usage
2021-10-14 10:31:28 +02:00