Skip to content

Commit

Permalink
Tweak capitalization in URL links
Browse files Browse the repository at this point in the history
  • Loading branch information
hirrolot committed Oct 1, 2024
1 parent a7f8be4 commit 542d3e4
Show file tree
Hide file tree
Showing 14 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Fix the `DOWNLOAD_EXTRACT_TIMESTAMP` CMake warning (see [datatype99/issues/15](https://github.com/Hirrolot/datatype99/issues/15)).
- Fix the `DOWNLOAD_EXTRACT_TIMESTAMP` CMake warning (see [datatype99/issues/15](https://github.com/hirrolot/datatype99/issues/15)).

## 0.1.2 - 2022-07-27

Expand Down
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@ include(FetchContent)

FetchContent_Declare(
slice99
GIT_REPOSITORY https://github.com/Hirrolot/slice99
GIT_REPOSITORY https://github.com/hirrolot/slice99
GIT_TAG 7075e1e)

FetchContent_Declare(
metalang99
GIT_REPOSITORY https://github.com/Hirrolot/metalang99
GIT_REPOSITORY https://github.com/hirrolot/metalang99
GIT_TAG e0eb4e1)

FetchContent_Declare(
datatype99
GIT_REPOSITORY https://github.com/Hirrolot/datatype99
GIT_REPOSITORY https://github.com/hirrolot/datatype99
GIT_TAG aa24712)

FetchContent_Declare(
interface99
GIT_REPOSITORY https://github.com/Hirrolot/interface99
GIT_REPOSITORY https://github.com/hirrolot/interface99
GIT_TAG 73c7c1e)

FetchContent_MakeAvailable(slice99 datatype99 interface99)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ SmolRTSP is a simple [RTSP 1.0] server library tailored for embedded devices, su
- **Battle-tested.** SmolRTSP is used by [Majestic], an IP camera streamer developed by [OpenIPC].

[libevent]: https://libevent.org/
[array slices]: https://github.com/Hirrolot/slice99
[array slices]: https://github.com/hirrolot/slice99
[Majestic]: https://openipc.github.io/wiki/en/majestic-streamer.html
[OpenIPC]: https://openipc.org/

Expand Down
2 changes: 1 addition & 1 deletion include/smolrtsp/context.h
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ ssize_t smolrtsp_respond_internal_error(SmolRTSP_Context *ctx);
/**
* Implements #SmolRTSP_Droppable_IFACE for #SmolRTSP_Context.
*
* See [Interface99](https://github.com/Hirrolot/interface99) for the macro
* See [Interface99](https://github.com/hirrolot/interface99) for the macro
* usage.
*/
declImplExtern99(SmolRTSP_Droppable, SmolRTSP_Context);
2 changes: 1 addition & 1 deletion include/smolrtsp/controller.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ typedef enum {
/**
* Defines the `SmolRTSP_Controller` interface.
*
* See [Interface99](https://github.com/Hirrolot/interface99) for the macro
* See [Interface99](https://github.com/hirrolot/interface99) for the macro
* usage.
*/
interface99(SmolRTSP_Controller);
Expand Down
4 changes: 2 additions & 2 deletions include/smolrtsp/droppable.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
* Types that can be dropped (deallocated).
*
* See [Interface99](https://github.com/Hirrolot/interface99) for the macro
* See [Interface99](https://github.com/hirrolot/interface99) for the macro
* usage.
*/
#define SmolRTSP_Droppable_IFACE \
Expand All @@ -23,7 +23,7 @@
/**
* Defines the `SmolRTSP_Droppable` interface.
*
* See [Interface99](https://github.com/Hirrolot/interface99) for the macro
* See [Interface99](https://github.com/hirrolot/interface99) for the macro
* usage.
*/
interface99(SmolRTSP_Droppable);
2 changes: 1 addition & 1 deletion include/smolrtsp/nal.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* A generic NAL header (either H.264 or H.265).
*
* See [Datatype99](https://github.com/Hirrolot/datatype99) for the macro usage.
* See [Datatype99](https://github.com/hirrolot/datatype99) for the macro usage.
*/

// clang-format off
Expand Down
2 changes: 1 addition & 1 deletion include/smolrtsp/nal_transport.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ int SmolRTSP_NalTransport_send_packet(
/**
* Implements #SmolRTSP_Droppable_IFACE for #SmolRTSP_NalTransport.
*
* See [Interface99](https://github.com/Hirrolot/interface99) for the macro
* See [Interface99](https://github.com/hirrolot/interface99) for the macro
* usage.
*/
declImplExtern99(SmolRTSP_Droppable, SmolRTSP_NalTransport);
Expand Down
2 changes: 1 addition & 1 deletion include/smolrtsp/option.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* - `SMOLRTSP_DEF_OPTION(name, T)` expands to `datatype99(name##Option,
* (name##_Some, T), (name##_None))`.
*
* See [Datatype99](https://github.com/Hirrolot/datatype99) for the macro usage.
* See [Datatype99](https://github.com/hirrolot/datatype99) for the macro usage.
*/
#define SMOLRTSP_DEF_OPTION(...) \
ML99_OVERLOAD(SMOLRTSP_PRIV_DEF_OPTION_, __VA_ARGS__)
Expand Down
4 changes: 2 additions & 2 deletions include/smolrtsp/rtp_transport.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ typedef struct SmolRTSP_RtpTransport SmolRTSP_RtpTransport;
* clock (e.g., `clock_gettime`). It should be used when a raw timestamp cannot
* be computed, as typically occurs with real-time video.
*
* See [Datatype99](https://github.com/Hirrolot/datatype99) for the macro usage.
* See [Datatype99](https://github.com/hirrolot/datatype99) for the macro usage.
*/

// clang-format off
Expand Down Expand Up @@ -79,7 +79,7 @@ int SmolRTSP_RtpTransport_send_packet(
/**
* Implements #SmolRTSP_Droppable_IFACE for #SmolRTSP_RtpTransport.
*
* See [Interface99](https://github.com/Hirrolot/interface99) for the macro
* See [Interface99](https://github.com/hirrolot/interface99) for the macro
* usage.
*/
declImplExtern99(SmolRTSP_Droppable, SmolRTSP_RtpTransport);
Expand Down
4 changes: 2 additions & 2 deletions include/smolrtsp/transport.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* A transport-level RTSP data transmitter.
*
* See [Interface99](https://github.com/Hirrolot/interface99) for the macro
* See [Interface99](https://github.com/hirrolot/interface99) for the macro
* usage.
*/
#define SmolRTSP_Transport_IFACE \
Expand All @@ -38,7 +38,7 @@
/**
* Defines the `SmolRTSP_Transport` interface.
*
* See [Interface99](https://github.com/Hirrolot/interface99) for the macro
* See [Interface99](https://github.com/hirrolot/interface99) for the macro
* usage.
*/
interface99(SmolRTSP_Transport);
Expand Down
6 changes: 3 additions & 3 deletions include/smolrtsp/types/error.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ SmolRTSP_ParseType_str(SmolRTSP_ParseType self) SMOLRTSP_PRIV_MUST_USE;
* - `MissingCSeq` -- Missing the `CSeq` header.
* - `InvalidCSeq` -- Failed to parse the `CSeq` header.
*
* See [Datatype99](https://github.com/Hirrolot/datatype99) for the macro usage.
* See [Datatype99](https://github.com/hirrolot/datatype99) for the macro usage.
*/

// clang-format off
Expand Down Expand Up @@ -96,7 +96,7 @@ int SmolRTSP_ParseError_print(SmolRTSP_ParseError self, SmolRTSP_Writer w)
* 1. A number of consumed bytes from the beginning of input.
* - `Partial` -- Need more data to continue parsing.
*
* See [Datatype99](https://github.com/Hirrolot/datatype99) for the macro usage.
* See [Datatype99](https://github.com/hirrolot/datatype99) for the macro usage.
*/

// clang-format off
Expand All @@ -122,7 +122,7 @@ bool SmolRTSP_ParseStatus_is_partial(SmolRTSP_ParseStatus self)
/**
* A result of parsing (either success or failure).
*
* See [Datatype99](https://github.com/Hirrolot/datatype99) for the macro usage.
* See [Datatype99](https://github.com/hirrolot/datatype99) for the macro usage.
*/

// clang-format off
Expand Down
4 changes: 2 additions & 2 deletions include/smolrtsp/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ typedef struct {
/**
* Defines `SmolRTSP_PortPairOption`.
*
* See [Datatype99](https://github.com/Hirrolot/datatype99) for the macro usage.
* See [Datatype99](https://github.com/hirrolot/datatype99) for the macro usage.
*/
SMOLRTSP_DEF_OPTION(SmolRTSP_PortPair);

Expand All @@ -83,7 +83,7 @@ typedef struct {
/**
* Defines `SmolRTSP_ChannelPairOption`.
*
* See [Datatype99](https://github.com/Hirrolot/datatype99) for the macro usage.
* See [Datatype99](https://github.com/hirrolot/datatype99) for the macro usage.
*/
SMOLRTSP_DEF_OPTION(SmolRTSP_ChannelPair);

Expand Down
2 changes: 1 addition & 1 deletion include/smolrtsp/writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
/**
* Defines the `SmolRTSP_Writer` interface.
*
* See [Interface99](https://github.com/Hirrolot/interface99) for the macro
* See [Interface99](https://github.com/hirrolot/interface99) for the macro
* usage.
*/
interface99(SmolRTSP_Writer);
Expand Down

0 comments on commit 542d3e4

Please sign in to comment.