GitXplorerGitXplorer
T

gst-chromiumembedded

public
1 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
efba28a3c2fbc2f95930c88124eaaf169f8bfee2

ahh

TTheBiggerGuy committed 11 years ago
Unverified
6c5591d41e1f51fb42570be99dfa30f3f5de9a25

add initial cef code and c++ build system.

TTheBiggerGuy committed 11 years ago
Unverified
610ed98685a01c13092d2e08561f78d62510993d

first render from static file.

TTheBiggerGuy committed 11 years ago
Unverified
02c48346f4b057480357f5419ae891d457297ee6

first working compile

TTheBiggerGuy committed 11 years ago
Unverified
82f239a7d441810659082672c476b366baee7a21

more progress.

TTheBiggerGuy committed 11 years ago
Unverified
159fbb4d2ef3538ebb9146edd04ecc350d855c1e

flesh out plugin

TTheBiggerGuy committed 11 years ago

README

The README file for this repository.

WHAT IT IS

gst-plugin is a template for writing your own GStreamer plug-in.

The code is deliberately kept simple so that you quickly understand the basics of how to set up autotools and your source tree.

This template demonstrates :

  • what to do in autogen.sh
  • how to setup configure.ac (your package name and version, GStreamer flags)
  • how to setup your source dir
  • what to put in Makefile.am

More features and templates might get added later on.

HOW TO USE IT

To use it, either make a copy for yourself and rename the parts or use the make_element script in tools. To create sources for "myfilter" based on the "gsttransform" template run:

cd src; ../tools/make_element myfilter gsttransform

This will create gstmyfilter.c and gstmyfilter.h. Open them in an editor and start editing. There are several occurances of the string "template", update those with real values. The plugin will be called 'myfilter' and it will have one element called 'myfilter' too. Also look for "FIXME:" markers that point you to places where you need to edit the code.

You still need to adjust the Makefile.am.