[byzanz] Fix wrong function name in big endian code
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [byzanz] Fix wrong function name in big endian code
- Date: Sat, 19 Jun 2010 16:53:21 +0000 (UTC)
commit 76ecaa9f5329a92b263c714d6f74485c9ed4e493
Author: Benjamin Otte <otte redhat com>
Date: Sat Jun 19 18:51:48 2010 +0200
Fix wrong function name in big endian code
Whoops, that's an embarrassing typo. It also proves I never checked this
code on big endian machines.
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583828
src/byzanzencodergstreamer.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/byzanzencodergstreamer.c b/src/byzanzencodergstreamer.c
index 2d89bab..8802ea5 100644
--- a/src/byzanzencodergstreamer.c
+++ b/src/byzanzencodergstreamer.c
@@ -138,7 +138,7 @@ byzanz_encoder_gstreamer_run (ByzanzEncoder * encoder,
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
gstreamer->caps = gst_caps_from_string (GST_VIDEO_CAPS_BGRx);
#elif G_BYTE_ORDER == G_BIG_ENDIAN
- gstreamer->caps = gst_caps_new_from_string (GST_VIDEO_CAPS_xRGB);
+ gstreamer->caps = gst_caps_from_string (GST_VIDEO_CAPS_xRGB);
#else
#error "Please add the Cairo caps format here"
#endif
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]