Re: [FFmpeg-devel] [PATCH 2/2] avutil/md5: stop discarding the const qualifier for the src pointer

2017-03-03 Thread James Almer
On 3/3/2017 12:36 PM, Michael Niedermayer wrote: > On Fri, Mar 03, 2017 at 01:54:20AM -0300, James Almer wrote: >> The code modifying the buffer on big endian systems was removed. >> >> Signed-off-by: James Almer >> --- >> libavutil/md5.c | 13 +++-- >> 1 file changed, 7 insertions(+), 6

Re: [FFmpeg-devel] [PATCH 2/2] avutil/md5: stop discarding the const qualifier for the src pointer

2017-03-03 Thread Michael Niedermayer
On Fri, Mar 03, 2017 at 01:54:20AM -0300, James Almer wrote: > The code modifying the buffer on big endian systems was removed. > > Signed-off-by: James Almer > --- > libavutil/md5.c | 13 +++-- > 1 file changed, 7 insertions(+), 6 deletions(-) LGTM thx [...] -- Michael GnuPG fin

[FFmpeg-devel] [PATCH 2/2] avutil/md5: stop discarding the const qualifier for the src pointer

2017-03-02 Thread James Almer
The code modifying the buffer on big endian systems was removed. Signed-off-by: James Almer --- libavutil/md5.c | 13 +++-- 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/libavutil/md5.c b/libavutil/md5.c index d3698dcb1d..1069ef1efe 100644 --- a/libavutil/md5.c +++ b/liba