blob: b45e3b9d29edf539e47cd90f0438e4a0d5604154 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* Copyright (c) 2018 Vasile Vilvoiu (YO7JBP) <vasi.vilvoiu@gmail.com>
*
* libsstv is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
*/
#include "sstv.h"
#include "libsstv.h"
sstv_error_t
sstv_create_encoder(sstv_mode_t mode, uint8_t *image, size_t sample_rate, void **out_ctx)
{
/* Check input */
}
sstv_error_t
sstv_delete_encoder(void *ctx)
{
}
sstv_error_t
sstv_encode(void *ctx, uint8_t *buffer, size_t buffer_size)
{
}
|