Re: [FFmpeg-devel] [PATCH][RFC] avutil/time: add av_warn_unused_result to av_usleep

2015-10-15 Thread Hendrik Leppkes
On Thu, Oct 15, 2015 at 11:59 PM, Ganesh Ajjanagadde wrote: > av_usleep can fail. Forcing users to check the error code here may be > somewhat controversial. > > Signed-off-by: Ganesh Ajjanagadde > --- > libavutil/time.h | 1 + > 1 file changed, 1

Re: [FFmpeg-devel] [PATCH][RFC] avutil/time: add av_warn_unused_result to av_usleep

2015-10-15 Thread Ganesh Ajjanagadde
On Thu, Oct 15, 2015 at 6:01 PM, Hendrik Leppkes wrote: > On Thu, Oct 15, 2015 at 11:59 PM, Ganesh Ajjanagadde > wrote: >> av_usleep can fail. Forcing users to check the error code here may be >> somewhat controversial. >> >> Signed-off-by: Ganesh

[FFmpeg-devel] [PATCH][RFC] avutil/time: add av_warn_unused_result to av_usleep

2015-10-15 Thread Ganesh Ajjanagadde
av_usleep can fail. Forcing users to check the error code here may be somewhat controversial. Signed-off-by: Ganesh Ajjanagadde --- libavutil/time.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libavutil/time.h b/libavutil/time.h index dc169b0..f55167b 100644 ---