]> git.sesse.net Git - vlc/commitdiff
mediacodec: disambiguate error message (same as below)
authorFelix Abecassis <felix.abecassis@gmail.com>
Sun, 9 Feb 2014 17:22:26 +0000 (18:22 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Sun, 9 Feb 2014 19:20:52 +0000 (20:20 +0100)
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
modules/codec/omxil/android_mediacodec.c

index e7109d2c171b9662f6cc46365d2ddf839212f7c2..d3eedc1a6ec0299f72c68c6693bd14e65df64ae7 100644 (file)
@@ -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;
             }