On Thu, 10 Jan 2019 18:09:21 +0100 Carl Eugen Hoyos <ceffm...@gmail.com> wrote:
> >> > - goto out; > >> > >> This seems like an unrelated change. > > > > It's necessary. HWCAP appears before HWCAP2 in the array, so if the > > code jumps out in HWCAP, it never gets to checking the CAP2 bits like > > power8. > > The next line (that I unfortunately cut) is: > } else if (buf[i] == AT_HWCAP2) { > indicating afaict that it is only reached if buf[i] is not equal > to HWCAP. > What do I miss? The surrounding context is a loop over all bytes: for (i = 0; i < count / sizeof(*buf); i += 2) { While the out: label is after the loop. - Lauri _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel