├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.ac └── src ├── Makefile.am ├── gstcedarh264enc.c ├── gstcedarh264enc.h ├── ve.c └── ve.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebutera/gst-plugin-cedar/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebutera/gst-plugin-cedar/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebutera/gst-plugin-cedar/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | 0.10.1: 2 | - first version -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | EXTRA_DIST = autogen.sh 4 | -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebutera/gst-plugin-cedar/HEAD/README -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebutera/gst-plugin-cedar/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebutera/gst-plugin-cedar/HEAD/configure.ac -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebutera/gst-plugin-cedar/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/gstcedarh264enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebutera/gst-plugin-cedar/HEAD/src/gstcedarh264enc.c -------------------------------------------------------------------------------- /src/gstcedarh264enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebutera/gst-plugin-cedar/HEAD/src/gstcedarh264enc.h -------------------------------------------------------------------------------- /src/ve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebutera/gst-plugin-cedar/HEAD/src/ve.c -------------------------------------------------------------------------------- /src/ve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebutera/gst-plugin-cedar/HEAD/src/ve.h --------------------------------------------------------------------------------