mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-28 16:01:22 +02:00
container_ffmpeg: fix Write from incompatible pointer type
This commit is contained in:
@@ -180,9 +180,9 @@ static void releaseMutex(const char *filename __attribute__((unused)), const con
|
||||
ffmpeg_printf(100, "::%d released mutex\n", line);
|
||||
}
|
||||
|
||||
typedef int32_t (* Write_FN)(void *, void *);
|
||||
typedef int32_t (* Write_FN)(Context_t *context, void *);
|
||||
|
||||
static int32_t Write(Write_FN WriteFun, void *context, void *privateData)
|
||||
static int32_t Write(Write_FN WriteFun, Context_t *context, void *privateData)
|
||||
{
|
||||
/* Because Write is blocking we will release mutex which protect
|
||||
* avformat structures, during write time
|
||||
|
Reference in New Issue
Block a user