Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: timvideos/gst-switch
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 34a25329a5b7
Choose a base ref
...
head repository: timvideos/gst-switch
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 432741810617
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Jan 13, 2015

  1. Replace autovideoconvert with videoconvert

    thaytan authored and mithro committed Jan 13, 2015
    Copy the full SHA
    819e497 View commit details
  2. Merge pull request #123 from mithro/s-autovideoconvert-videoconvert

    Replace autovideoconvert with videoconvert
    mithro committed Jan 13, 2015
    Copy the full SHA
    4327418 View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 README.md
  2. +1 −1 tools/gstaudiovisual.c
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -303,7 +303,7 @@ ack --type=cc "g_string_new|g_string_append" * | grep '"' | grep ".c" | sed -e's
tools/gstaudiovisual - Renders a video of the audio.
* *FIXME: Is this GUI or server side?*
* audioconvert
* autovideoconvert
* videoconvert
* faad
* gdpdepay
* monoscope
2 changes: 1 addition & 1 deletion tools/gstaudiovisual.c
Original file line number Diff line number Diff line change
@@ -254,7 +254,7 @@ gst_audio_visual_get_pipeline_string (GstAudioVisual * visual)
g_string_append_printf (desc, "! textoverlay text=\"active\" "
"font-desc=\"Sans 50\" " "shaded-background=true " "auto-resize=true ");
}
g_string_append_printf (desc, "! autovideoconvert ");
g_string_append_printf (desc, "! videoconvert ");
g_string_append_printf (desc, "! xvimagesink name=visual sync=false ");

INFO("Audio preview: %s", desc->str);