Re: [FFmpeg-devel] [PATCH 1/2] avcodec/vda_h264: use multichar literal portably

2015-09-20 Thread Ganesh Ajjanagadde
On Sun, Sep 20, 2015 at 1:39 PM, wm4 wrote: > On Sun, 20 Sep 2015 11:18:46 -0400 > Ganesh Ajjanagadde wrote: > >> On Sun, Sep 20, 2015 at 10:41 AM, wm4 wrote: >> > On Fri, 18 Sep 2015 18:16:18 -0400 >> > Ganesh Ajjanagadde wrote: >> > >> >> Multichar literals are implementation defined, and thu

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/vda_h264: use multichar literal portably

2015-09-20 Thread wm4
On Sun, 20 Sep 2015 11:18:46 -0400 Ganesh Ajjanagadde wrote: > On Sun, Sep 20, 2015 at 10:41 AM, wm4 wrote: > > On Fri, 18 Sep 2015 18:16:18 -0400 > > Ganesh Ajjanagadde wrote: > > > >> Multichar literals are implementation defined, and thus trigger > >> -Wmultichar: > >> http://fate.ffmpeg.or

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/vda_h264: use multichar literal portably

2015-09-20 Thread Ganesh Ajjanagadde
On Sun, Sep 20, 2015 at 10:41 AM, wm4 wrote: > On Fri, 18 Sep 2015 18:16:18 -0400 > Ganesh Ajjanagadde wrote: > >> Multichar literals are implementation defined, and thus trigger -Wmultichar: >> http://fate.ffmpeg.org/log.cgi?time=20150918202532&log=compile&slot=x86_64-darwin-gcc-5. >> http://www

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/vda_h264: use multichar literal portably

2015-09-20 Thread wm4
On Fri, 18 Sep 2015 18:16:18 -0400 Ganesh Ajjanagadde wrote: > Multichar literals are implementation defined, and thus trigger -Wmultichar: > http://fate.ffmpeg.org/log.cgi?time=20150918202532&log=compile&slot=x86_64-darwin-gcc-5. > http://www.zipcon.net/~swhite/docs/computers/languages/c_multi-c

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/vda_h264: use multichar literal portably

2015-09-19 Thread Ganesh Ajjanagadde
On Sat, Sep 19, 2015 at 2:27 AM, Hendrik Leppkes wrote: > On Sat, Sep 19, 2015 at 12:35 AM, Michael Niedermayer > wrote: >> On Fri, Sep 18, 2015 at 06:16:18PM -0400, Ganesh Ajjanagadde wrote: >>> Multichar literals are implementation defined, and thus trigger -Wmultichar: >>> http://fate.ffmpeg.

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/vda_h264: use multichar literal portably

2015-09-18 Thread Hendrik Leppkes
On Sat, Sep 19, 2015 at 12:35 AM, Michael Niedermayer wrote: > On Fri, Sep 18, 2015 at 06:16:18PM -0400, Ganesh Ajjanagadde wrote: >> Multichar literals are implementation defined, and thus trigger -Wmultichar: >> http://fate.ffmpeg.org/log.cgi?time=20150918202532&log=compile&slot=x86_64-darwin-gc

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/vda_h264: use multichar literal portably

2015-09-18 Thread Michael Niedermayer
On Fri, Sep 18, 2015 at 06:16:18PM -0400, Ganesh Ajjanagadde wrote: > Multichar literals are implementation defined, and thus trigger -Wmultichar: > http://fate.ffmpeg.org/log.cgi?time=20150918202532&log=compile&slot=x86_64-darwin-gcc-5. > http://www.zipcon.net/~swhite/docs/computers/languages/c_mu

[FFmpeg-devel] [PATCH 1/2] avcodec/vda_h264: use multichar literal portably

2015-09-18 Thread Ganesh Ajjanagadde
Multichar literals are implementation defined, and thus trigger -Wmultichar: http://fate.ffmpeg.org/log.cgi?time=20150918202532&log=compile&slot=x86_64-darwin-gcc-5. http://www.zipcon.net/~swhite/docs/computers/languages/c_multi-char_const.html gives a good summary of how to deal with them; in part