gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-


From: Rob Savoye
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1529-ga5c8d01
Date: Wed, 30 Jan 2013 22:40:53 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  a5c8d01a8b836f8ffbd8aa1d2582000052a98dbf (commit)
      from  d58d08084ef99c6c377c7a3e3594bd087d236c4b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=a5c8d01a8b836f8ffbd8aa1d2582000052a98dbf


commit a5c8d01a8b836f8ffbd8aa1d2582000052a98dbf
Author: Rob Savoye <address@hidden>
Date:   Wed Jan 30 15:40:15 2013 -0700

    fix log_debug message with syntax error for the gettext _ macro.

diff --git a/libdevice/vaapi/VaapiImage.cpp b/libdevice/vaapi/VaapiImage.cpp
index 5fc6cf2..d4a6a17 100644
--- a/libdevice/vaapi/VaapiImage.cpp
+++ b/libdevice/vaapi/VaapiImage.cpp
@@ -35,7 +35,7 @@ VaapiImage::VaapiImage(unsigned int     width,
     : _format(format)
     , _image_data(NULL)
 {
-    log_debug(_("VaapiImage::VaapiImage(): format '%s'\n", 
string_of_FOURCC(format)));
+    log_debug(_("VaapiImage::VaapiImage(): format '%s'\n"), 
string_of_FOURCC(format));
 
     memset(&_image, 0, sizeof(_image));
     _image.image_id = VA_INVALID_ID;
@@ -79,7 +79,7 @@ bool VaapiImage::create(unsigned int width, unsigned int 
height)
     if (!vaapi_check_status(status, "vaCreateImage()"))
         return false;
 
-    log_debug(_("  image 0x%08x, format '%s'\n", get(), 
string_of_FOURCC(_format)));
+    log_debug(_("  image 0x%08x, format '%s'\n"), get(), 
string_of_FOURCC(_format));
 
     return true;
 }
diff --git a/libdevice/vaapi/VaapiSubpicture.cpp 
b/libdevice/vaapi/VaapiSubpicture.cpp
index e6ea376..227a05a 100644
--- a/libdevice/vaapi/VaapiSubpicture.cpp
+++ b/libdevice/vaapi/VaapiSubpicture.cpp
@@ -32,7 +32,7 @@ 
VaapiSubpicture::VaapiSubpicture(boost::shared_ptr<VaapiImage> image)
     : _image(image)
     , _subpicture(VA_INVALID_ID)
 {
-    log_debug(_("VaapiSubpicture::VaapiSubpicture(): format '%s'\n", 
string_of_FOURCC(image->format())));
+    log_debug(_("VaapiSubpicture::VaapiSubpicture(): format '%s'\n"), 
string_of_FOURCC(image->format()));
 
     if (!create()) {
         boost::format msg;
diff --git a/libdevice/vaapi/VaapiSurface.cpp b/libdevice/vaapi/VaapiSurface.cpp
index fd09bfa..7a16495 100644
--- a/libdevice/vaapi/VaapiSurface.cpp
+++ b/libdevice/vaapi/VaapiSurface.cpp
@@ -74,7 +74,7 @@ public:
 
 VaapiSurfaceImpl::~VaapiSurfaceImpl()
 {
-    log_debug(_("VaapiSurface::~VaapiSurface(): surface 0x%08x\n", surface()));
+    log_debug(_("VaapiSurface::~VaapiSurface(): surface 0x%08x\n"), surface());
 
     if (surface() == VA_INVALID_SURFACE) {
         return;
diff --git a/libdevice/vaapi/VaapiSurfaceProxy.cpp 
b/libdevice/vaapi/VaapiSurfaceProxy.cpp
index d51a38b..8972587 100644
--- a/libdevice/vaapi/VaapiSurfaceProxy.cpp
+++ b/libdevice/vaapi/VaapiSurfaceProxy.cpp
@@ -28,12 +28,12 @@ 
VaapiSurfaceProxy::VaapiSurfaceProxy(boost::shared_ptr<VaapiSurface> surface,
                                      boost::shared_ptr<VaapiContext> context)
     : _context(context), _surface(surface)
 {
-    log_debug(_("VaapiSurfaceProxy::VaapiSurfaceProxy(): surface 0x%08x\n", 
_surface->get()));
+    log_debug(_("VaapiSurfaceProxy::VaapiSurfaceProxy(): surface 0x%08x\n"), 
_surface->get());
 }
     
 VaapiSurfaceProxy::~VaapiSurfaceProxy()
 {
-    log_debug(_("VaapiSurfaceProxy::~VaapiSurfaceProxy(): surface 0x%08x\n", 
_surface->get()));
+    log_debug(_("VaapiSurfaceProxy::~VaapiSurfaceProxy(): surface 0x%08x\n"), 
_surface->get());
 
     _context->releaseSurface(_surface);
 }

-----------------------------------------------------------------------

Summary of changes:
 libdevice/vaapi/VaapiImage.cpp        |    4 ++--
 libdevice/vaapi/VaapiSubpicture.cpp   |    2 +-
 libdevice/vaapi/VaapiSurface.cpp      |    2 +-
 libdevice/vaapi/VaapiSurfaceProxy.cpp |    4 ++--
 4 files changed, 6 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]