[vlc-commits] mediacodec: disambiguate error message (same as below)

Felix Abecassis git at videolan.org
Sun Feb 9 20:22:26 CET 2014


vlc | branch: master | Felix Abecassis <felix.abecassis at gmail.com> | Sun Feb  9 18:22:26 2014 +0100| [3d4d9fe5453cb88b5d3b4d8110c4a01c80180529] | committer: Jean-Baptiste Kempf

mediacodec: disambiguate error message (same as below)

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3d4d9fe5453cb88b5d3b4d8110c4a01c80180529
---

 modules/codec/omxil/android_mediacodec.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/codec/omxil/android_mediacodec.c b/modules/codec/omxil/android_mediacodec.c
index e7109d2..d3eedc1 100644
--- a/modules/codec/omxil/android_mediacodec.c
+++ b/modules/codec/omxil/android_mediacodec.c
@@ -362,7 +362,7 @@ static int OpenDecoder(vlc_object_t *p_this)
             // Configure MediaCodec with the Android surface.
             (*env)->CallVoidMethod(env, p_sys->codec, p_sys->configure, format, surf, NULL, 0);
             if ((*env)->ExceptionOccurred(env)) {
-                msg_Warn(p_dec, "Exception occurred in MediaCodec.configure");
+                msg_Warn(p_dec, "Exception occurred in MediaCodec.configure with an output surface.");
                 (*env)->ExceptionClear(env);
                 goto error;
             }



More information about the vlc-commits mailing list