├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── c-cpp.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── meson.build ├── pkgconfig ├── gstreamer-aws.pc.in └── meson.build ├── src ├── gstawscredentials.cpp ├── gstawscredentials.h ├── gstawscredentials.hpp ├── gsts3elements.c ├── gsts3multipartuploader.cpp ├── gsts3multipartuploader.h ├── gsts3sink.c ├── gsts3sink.h ├── gsts3uploader.c ├── gsts3uploader.h ├── gsts3uploaderconfig.h └── meson.build └── tests ├── check ├── meson.build └── s3sink.c └── meson.build /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/README.md -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/meson.build -------------------------------------------------------------------------------- /pkgconfig/gstreamer-aws.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/pkgconfig/gstreamer-aws.pc.in -------------------------------------------------------------------------------- /pkgconfig/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/pkgconfig/meson.build -------------------------------------------------------------------------------- /src/gstawscredentials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/src/gstawscredentials.cpp -------------------------------------------------------------------------------- /src/gstawscredentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/src/gstawscredentials.h -------------------------------------------------------------------------------- /src/gstawscredentials.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/src/gstawscredentials.hpp -------------------------------------------------------------------------------- /src/gsts3elements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/src/gsts3elements.c -------------------------------------------------------------------------------- /src/gsts3multipartuploader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/src/gsts3multipartuploader.cpp -------------------------------------------------------------------------------- /src/gsts3multipartuploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/src/gsts3multipartuploader.h -------------------------------------------------------------------------------- /src/gsts3sink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/src/gsts3sink.c -------------------------------------------------------------------------------- /src/gsts3sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/src/gsts3sink.h -------------------------------------------------------------------------------- /src/gsts3uploader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/src/gsts3uploader.c -------------------------------------------------------------------------------- /src/gsts3uploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/src/gsts3uploader.h -------------------------------------------------------------------------------- /src/gsts3uploaderconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/src/gsts3uploaderconfig.h -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/src/meson.build -------------------------------------------------------------------------------- /tests/check/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/tests/check/meson.build -------------------------------------------------------------------------------- /tests/check/s3sink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amzn/amazon-s3-gst-plugin/HEAD/tests/check/s3sink.c -------------------------------------------------------------------------------- /tests/meson.build: -------------------------------------------------------------------------------- 1 | subdir('check') --------------------------------------------------------------------------------