diff options
| author | Vasile Vilvoiu <vasi@vilvoiu.ro> | 2023-08-26 19:08:57 +0300 |
|---|---|---|
| committer | Vasile Vilvoiu <vasi@vilvoiu.ro> | 2023-08-26 19:08:57 +0300 |
| commit | ed39dbf1c50e3f535ca6904a384752d78803b0f9 (patch) | |
| tree | d59da59090aefb95d2effaecddff34b1fff96958 | |
| parent | 1ee2a3c8c84dd96c52eea826a3a238a5e140976e (diff) | |
Update license information. Update email.
| -rw-r--r-- | LICENSE | 2 | ||||
| -rw-r--r-- | README.md | 8 | ||||
| -rw-r--r-- | src/encoder.c | 4 | ||||
| -rw-r--r-- | src/libsstv.template.h | 2 | ||||
| -rw-r--r-- | src/luts.c | 2 | ||||
| -rw-r--r-- | src/luts.h | 4 | ||||
| -rw-r--r-- | src/sstv.c | 4 | ||||
| -rw-r--r-- | src/sstv.h | 4 | ||||
| -rw-r--r-- | src/tools/sstv-encode.cpp | 2 | ||||
| -rw-r--r-- | util/genluts.py | 2 |
10 files changed, 20 insertions, 14 deletions
@@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018-2023 Vasile Vilvoiu +Copyright (c) 2018-2023 Vasile Vilvoiu (YO7JBP) <vasi@vilvoiu.ro> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -2,7 +2,7 @@ *NOTE: The current pre-release version of the library only supports encoding of images in a multitude of modes. Decoding support is planned for the 1.0.0 version, but as of yet no work has been done in that direction.* -SSTV C encoder/decoder library suitable for both desktop and embedded applications. +SSTV encoder/~~decoder~~ C library suitable for both desktop and embedded applications. ## Building and installing @@ -47,6 +47,12 @@ To install these packages in ArchLinux: pacman -S imagemagick libsndfile ``` +## License + +Copyright (c) 2018-2023 Vasile Vilvoiu (YO7JBP) <vasi@vilvoiu.ro> + +libsstv is free software; you can redistribute it and/or modify it under the terms of the MIT license. See LICENSE for details. + ## Acknowledgements Taywee/args library by Taylor C. Richberger and Pavel Belikov, released under the MIT license. diff --git a/src/encoder.c b/src/encoder.c index c9e9c7a..c749e3c 100644 --- a/src/encoder.c +++ b/src/encoder.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 Vasile Vilvoiu (YO7JBP) <vasi.vilvoiu@gmail.com> + * Copyright (c) 2018-2023 Vasile Vilvoiu (YO7JBP) <vasi@vilvoiu.ro> * * libsstv is free software; you can redistribute it and/or modify * it under the terms of the MIT license. See LICENSE for details. @@ -1029,4 +1029,4 @@ sstv_encode(void *ctx, sstv_signal_t *signal) } signal->count ++; } -}
\ No newline at end of file +} diff --git a/src/libsstv.template.h b/src/libsstv.template.h index 362ecbd..c00fb41 100644 --- a/src/libsstv.template.h +++ b/src/libsstv.template.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2023 Vasile Vilvoiu (YO7JBP) <vasi.vilvoiu@gmail.com> + * Copyright (c) 2018-2023 Vasile Vilvoiu (YO7JBP) <vasi@vilvoiu.ro> * * libsstv is free software; you can redistribute it and/or modify * it under the terms of the MIT license. See LICENSE for details. @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2023 Vasile Vilvoiu (YO7JBP) <vasi.vilvoiu@gmail.com> + * Copyright (c) 2018-2023 Vasile Vilvoiu (YO7JBP) <vasi@vilvoiu.ro> * * libsstv is free software; you can redistribute it and/or modify * it under the terms of the MIT license. See LICENSE for details. @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 Vasile Vilvoiu (YO7JBP) <vasi.vilvoiu@gmail.com> + * Copyright (c) 2018-2023 Vasile Vilvoiu (YO7JBP) <vasi@vilvoiu.ro> * * libsstv is free software; you can redistribute it and/or modify * it under the terms of the MIT license. See LICENSE for details. @@ -16,4 +16,4 @@ extern uint8_t SSTV_SIN_INT10_UINT8[1024]; extern int16_t SSTV_SIN_INT10_INT16[1024]; -#endif
\ No newline at end of file +#endif @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 Vasile Vilvoiu (YO7JBP) <vasi.vilvoiu@gmail.com> + * Copyright (c) 2018-2023 Vasile Vilvoiu (YO7JBP) <vasi@vilvoiu.ro> * * libsstv is free software; you can redistribute it and/or modify * it under the terms of the MIT license. See LICENSE for details. @@ -785,4 +785,4 @@ sstv_get_mode_descriptor(sstv_mode_t mode, uint32_t sample_rate, sstv_mode_descr /* all ok */ return SSTV_OK; -}
\ No newline at end of file +} @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 Vasile Vilvoiu (YO7JBP) <vasi.vilvoiu@gmail.com> + * Copyright (c) 2018-2023 Vasile Vilvoiu (YO7JBP) <vasi@vilvoiu.ro> * * libsstv is free software; you can redistribute it and/or modify * it under the terms of the MIT license. See LICENSE for details. @@ -91,4 +91,4 @@ extern sstv_free_t sstv_free_user; extern sstv_error_t sstv_get_mode_descriptor(sstv_mode_t mode, uint32_t sample_rate, sstv_mode_descriptor_t *desc); -#endif
\ No newline at end of file +#endif diff --git a/src/tools/sstv-encode.cpp b/src/tools/sstv-encode.cpp index 46b6ca2..3c6e391 100644 --- a/src/tools/sstv-encode.cpp +++ b/src/tools/sstv-encode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2023 Vasile Vilvoiu (YO7JBP) <vasi.vilvoiu@gmail.com> + * Copyright (c) 2018-2023 Vasile Vilvoiu (YO7JBP) <vasi@vilvoiu.ro> * * libsstv is free software; you can redistribute it and/or modify * it under the terms of the MIT license. See LICENSE for details. diff --git a/util/genluts.py b/util/genluts.py index 2647280..22b2be9 100644 --- a/util/genluts.py +++ b/util/genluts.py @@ -6,7 +6,7 @@ f = open('src/luts.c', 'w') # header f.write('/*\n') -f.write(' * Copyright (c) 2018-{} Vasile Vilvoiu (YO7JBP) <vasi.vilvoiu@gmail.com>\n'.format(datetime.datetime.now().date().strftime("%Y"))) +f.write(' * Copyright (c) 2018-{} Vasile Vilvoiu (YO7JBP) <vasi@vilvoiu.ro>\n'.format(datetime.datetime.now().date().strftime("%Y"))) f.write(' *\n') f.write(' * libsstv is free software; you can redistribute it and/or modify\n') f.write(' * it under the terms of the MIT license. See LICENSE for details.\n') |
