Questions tagged [autogen]

AutoGen - The Automated Program Generator of GNU Operating System. AutoGen is a tool designed to simplify the creation and maintenance of programs that contain large amounts of repetitious text. It is especially valuable in programs that have several blocks of text that must be kept synchronized.

Definition:

According to the Official AutoGen Home Page:

AutoGen is a tool designed to simplify the creation and maintenance of programs that contain large amounts of repetitious text. It is especially valuable in programs that have several blocks of text that must be kept synchronized.

AutoGen stands for Automated Program Generator (GNU).

Important Links:

44 questions
0
votes
1 answer

Bitbake autotools

I have set up a recipe of mine to use autotools to make my project. I recently decided to run bitbake with the verbose output turned on. I noticed nowhere in my build or compilation does autogen.sh get called. It goes straight to my…
Michael
  • 399
  • 2
  • 17
0
votes
0 answers

Decode multiple video on GPU (FFmpeg.autogen + C#)

I'm trying to use the basic example about decoding video (FFmpeg.AutoGen.Example) in the FFmpeg.autogen 4.3.0.3 library https://github.com/Ruslan-B/FFmpeg.AutoGen to decode multiple videos on a GPU (AMD radeon R7 430). My main function is as…
0
votes
1 answer

Which version of FFmpeg.AutoGen should I use?

I'm trying to use FFMediaToolkit library which uses FFmpeg.AutoGen. And I encountered an error Invalid data found when processing input when calling ffmpeg.avformat_open_input this line. I tried run in windows & ubuntu using the latest version…
0
votes
0 answers

Possible Memory leak in FFMPEGAutogen Example

I'm using the https://github.com/Ruslan-B/FFmpeg.AutoGen library to connect to an rtsp camera stream and save the frames as png images. Testing with the FFMPEG.Autogen's example project present in the GitHub repository with no changes I've noticed…
Deadmeat
  • 101
  • 1
  • 2
  • 6
0
votes
1 answer

Using FFmpeg AutoGen save to bitmap works on Windows but not on Linux

I'm using FFmpeg.AutoGen to decrypt video and save the frames as bitmaps. Code is using dotnet core and I'd like to get it working for both Windows and Linux. The code is similar to the example provided:…
Chris
  • 1,006
  • 10
  • 13
0
votes
1 answer

Ffmpeg possible sws_scale memory leak

I'm decoding whatever the camera codec is and then always encode it to H264 and more specifically qsv if it is supported. Currently having 2 cameras to test. One is H264 encoding and one is rawvideo. The problem comes with rawvideo. The pixel format…
Expressingx
  • 1,480
  • 1
  • 14
  • 39
0
votes
1 answer

How should mulitiple query string parameters be presented in swaggers?

I want the api to be able to accept multiple query strings, for example: GET /{id}?expand=property1,property2 I have the api defined as: public Task GetAsync([FromRoute] string id, [FromQuery] Expandable expand) And Flag Enum…
Yituo
  • 1,458
  • 4
  • 17
  • 26
0
votes
1 answer

Autoconf cannot find config.status

When I run ./autogen.sh on https://github.com/EricssonResearch/openwebrtc I get this: autoreconf: Entering directory `.' autoreconf: configure.ac: not using Gettext autoreconf: running: aclocal --force -I m4 autoreconf: configure.ac:…
Alex Blanz
  • 21
  • 1
  • 5
0
votes
0 answers

install python3 project using autotools

I have a gtk+3 project written in python3 with file-structure (I am in Linux): $tree . ├── autogen.sh ├── configure.ac ├── Makefile.am ├── mkbib.desktop.in └── src ├── __init__.py #empty file ├── menubar.ui ├── menu.py ├──…
BaRud
  • 3,055
  • 7
  • 41
  • 89
0
votes
1 answer

How to compile libunity for Debian Jessie?

I am trying to compile libunity obtained from here. But autogen.sh fails with this message: /usr/bin/gnome-autogen.sh checking for automake >= 1.11.2... testing automake... found 1.14.1 checking for autoreconf >= 2.53... testing autoreconf...…
max
  • 2,627
  • 1
  • 24
  • 44
0
votes
3 answers

How can I auto-modify an image?

The question I am asking is a little bit abstract, so I will try to make it more clear. There are websites where you sign up and get a signature in the format of an image. It has a general format, say a few boxes that are empty, and a logo in the…
0
votes
1 answer

Mono: How to add a DLL reference in Makefile.am?

I am trying to add a DLL to CmisSync, an open source project that uses Mono and autogen/configure/Makefiles. It is my first time with Mono. I copied the DLL to the relevant subdirectory, and modified this directory's Makefile.am at this line: LINK =…
Nicolas Raoul
  • 58,567
  • 58
  • 222
  • 373
-1
votes
2 answers

How to add options to ntpd

I'd like to add a new option to ntpd however I couldn't find how to generate ntpd/ntpd-opts{.c, .h} after adding some lines to ntpd/ntpdbase-opts.def e.g., $ git diff ntpd/ntpdbase-opts.def diff --git a/ntpd/ntpdbase-opts.def…
sira
  • 281
  • 3
  • 10
-1
votes
1 answer

Why do I catch the "AccessViolationException" exception in av_hwframe_transfer_data () when I run it as a windows service?

I write Windows service witch decodig video stream from camera. I write it on c# with FFMPEG.Autogen wrapper. My problem is "AccessViolationException" when i run it as service. If i run application as Console Application i have no exceptions. In…
vakym
  • 61
  • 1
  • 9
1 2
3