diff options
author | jstebbins <[email protected]> | 2013-01-16 07:53:58 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2013-01-16 07:53:58 +0000 |
commit | 0f61a64c420ac239ff66f7c97cf979db7a990d09 (patch) | |
tree | 2e365ed2c0f262a65ed5ba19212e9d85732418b4 | |
parent | 51c25da188b437d689860432f89ba3329eaf083e (diff) |
LinGui: Fix building with versions of gstreamer older than 0.10.33
Ubuntu 11.04 uses something older
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5173 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | gtk/src/preview.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/src/preview.c b/gtk/src/preview.c index f78004f2d..d62026e7c 100644 --- a/gtk/src/preview.c +++ b/gtk/src/preview.c @@ -614,12 +614,12 @@ live_preview_cb(GstBus *bus, GstMessage *msg, gpointer data) //printf("qos\n"); } break; +#if GST_CHECK_VERSION(1, 0, 0) case GST_MESSAGE_PROGRESS: { //printf("progress\n"); } break; -#if GST_CHECK_VERSION(1, 0, 0) case GST_MESSAGE_TOC: { //printf("toc\n"); |