Re: [FFmpeg-devel] [PATCH] ffplay: more robust mutex, condition variable handling

2015-10-03 Thread Ganesh Ajjanagadde
On Thu, Oct 1, 2015 at 7:16 AM, Ganesh Ajjanagadde wrote: > On Sep 30, 2015 7:50 PM, "Marton Balint" wrote: >> >> >> On Tue, 29 Sep 2015, Ganesh Ajjanagadde wrote: >> >>> SDL_CreateMutex and SDL_CreateCond can fail: >>>

Re: [FFmpeg-devel] [PATCH] ffplay: more robust mutex, condition variable handling

2015-10-01 Thread Ganesh Ajjanagadde
On Sep 30, 2015 7:50 PM, "Marton Balint" wrote: > > > On Tue, 29 Sep 2015, Ganesh Ajjanagadde wrote: > >> SDL_CreateMutex and SDL_CreateCond can fail: >> https://wiki.libsdl.org/SDL_CreateMutex. >> This patch makes handling more robust in one instance. >> >> Signed-off-by: Ganesh

Re: [FFmpeg-devel] [PATCH] ffplay: more robust mutex, condition variable handling

2015-09-30 Thread Marton Balint
On Tue, 29 Sep 2015, Ganesh Ajjanagadde wrote: SDL_CreateMutex and SDL_CreateCond can fail: https://wiki.libsdl.org/SDL_CreateMutex. This patch makes handling more robust in one instance. Signed-off-by: Ganesh Ajjanagadde --- ffplay.c | 17 + 1 file

Re: [FFmpeg-devel] [PATCH] ffplay: more robust mutex, condition variable handling

2015-09-27 Thread Ganesh Ajjanagadde
On Sun, Sep 27, 2015 at 9:35 PM, Ganesh Ajjanagadde wrote: > SDL_CreateMutex and SDL_CreateCond can fail: > https://wiki.libsdl.org/SDL_CreateMutex. > This patch makes handling more robust in one instance. > > Signed-off-by: Ganesh Ajjanagadde >