~again4you/+git/gst-shark:release-0.1

Last commit made on 2016-03-31
Get this branch:
git clone -b release-0.1 https://git.launchpad.net/~again4you/+git/gst-shark

Branch merges

Branch information

Name:
release-0.1
Repository:
lp:~again4you/+git/gst-shark

Recent commits

7e45c46... by rrcarlosrodriguez <email address hidden>

Change release description file

866053e... by rrcarlosrodriguez <email address hidden>

Add GstTune Eclipse project support

Features:
  - Adding eclipse project plugin with dot file and tracer demo
  - Project Feature contains project basic description, still need
    to add accurate description.
  - Adding GstTune project site containing its dependencies and site
    ready for eclipse install.

0f74406... by Carlos Aguero

Add GstTune project site

Adding GstTune project site containing its dependencies and site
ready for eclipse install

6626e56... by Carlos Aguero

Add GstTune project feature

Project Feature contains project basic description, still need
to add accurate description.

5861fa6... by Carlos Aguero

Add Eclipse plugin project

Adding eclipse project plugin with dot file and tracer demo

a0689f9... by rrcarlosrodriguez <email address hidden>

Add Interlatency tracer plugin

This plugin is part of the Gst-Shark tracers. Its function is
log the buffers latencies in nanoseconds, between the src and
all the intermediate elements pads in the pipeline.

When a buffer is sent from the source, a custom event is sent
downstream with the information to track the buffer and calculate
the time difference between the arrive time and the incoming time
of each buffer.

Interlatency is based in the latency gstreamer tracer plugin.

482a4a0... by Manuel <email address hidden>

Merge branch 'feature/element-processing-time' into develop

725d7e2... by Manuel <email address hidden>

Use gst_util_get_timestamp() instead of own implementation and display
the measured processing time using GST_TIME_FORMAT

a4c6eb9... by Manuel <email address hidden>

Add a new plugin to measure the processing time

The plugin creates an a list of all the elements available in
the pipeline, These element are added when each element are created.
The processing time is measure when a push pad event is detected.

a148b81... by Manuel <email address hidden>

Add API to compute the processing time for elements with one src pad and
one sink pad

The processing time is measured creating an a list of all the elements
with one src pad and one sink pad. This list is used to identify
which element receives the buffer processed in the push pad event.
For each push pad event the processing time measured is the time between
the time where the buffer was processed by the previous element to the
time where the buffer was processed by the current element.