libeplayer3/container_ffmpeg: only log ffmpeg errors at debug_level > 10

Origin commit data
------------------
Branch: master
Commit: 2258a2fd3a
Author: martii <m4rtii@gmx.de>
Date: 2013-12-17 (Tue, 17 Dec 2013)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
martii
2013-12-17 15:39:11 +01:00
parent 6a3d250949
commit 417e972e9d

View File

@@ -821,7 +821,8 @@ static int interrupt_cb(void *ctx)
static void log_callback(void *ptr __attribute__ ((unused)), int lvl __attribute__ ((unused)), const char *format, va_list ap)
{
vfprintf(stderr, format, ap);
if (debug_level > 10)
vfprintf(stderr, format, ap);
}
int container_ffmpeg_init(Context_t * context, char *filename)