tools/docgen.sh
author Pekka Ristola <pekkarr@protonmail.com>
Mon, 27 Jan 2025 19:08:05 +0100
changeset 16096 dbdb98dafd80
parent 11515 4dd77731453b
permissions -rwxr-xr-x
Add support for ffmpeg 6.0 - Use the new send_frame/receive_packet API for encoding - Use the new channel layout API for audio - Fix audio recording - Copy codec parameters to the stream parameters - Set correct pts for audio frames - Read audio samples from file directly to the refcounted AVFrame buffer instead of the `g_pSamples` buffer - Use global AVPackets allocated with `av_packet_alloc` - Stop trying to write more audio frames when `WriteAudioFrame` fails with a negative error code - Fix segfault with `g_pContainer->url`. The field has to be allocated with `av_malloc` before writing to it. It's set to `NULL` by default. - Properly free allocations with `avcodec_free_context` and `avformat_free_context`
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6203
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
     1
#!/bin/sh
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
     2
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
     3
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
     4
if [ -d QTfrontend ]; then
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
     5
	cd QTfrontend
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
     6
else
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
     7
	if [ -d ../QTfrontend ]; then
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
     8
		cd ../QTfrontend
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
     9
	else
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    10
		echo 'abort: Directory "QTfrontend" not found!' >&2
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    11
		exit 1
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    12
	fi
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    13
fi
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    14
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    15
if [ -z "$1" ]; then
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    16
	OUTPUT_DIRECTORY="../doc/QTfrontend"
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    17
else
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    18
	OUTPUT_DIRECTORY="$1"
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    19
fi
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    20
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    21
echo "Creating documentation for Qt-Frontend in $OUTPUT_DIRECTORY ..."
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    22
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    23
if [ $(which hg) ]; then
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    24
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    25
branch=$(hg identify -b)
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    26
rev=$(hg identify -rdefault -i)
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    27
11515
4dd77731453b update some old google code links in the code/etc. thanks Wuzzy for the heads-up
sheepluva
parents: 10667
diff changeset
    28
export PROJECT_NUMBER="${branch} branch, ${rev}"
6203
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    29
export OUTPUT_DIRECTORY
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    30
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    31
fi
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    32
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    33
doxygen
38ddad39f08f adding simple doc build script
sheepluva
parents:
diff changeset
    34
exit $?