skip_bytes       1245 libavcodec/hevc.c     const uint8_t *pcm = skip_bytes(&lc->cc, (length + 7) >> 3);
skip_bytes        517 libavcodec/hevc_cabac.c     skip_bytes(&lc->cc, 0);
skip_bytes        357 libavcodec/shorten.c         int skip_bytes;
skip_bytes        372 libavcodec/shorten.c         skip_bytes = get_uint(s, NSKIPSIZE);
skip_bytes        373 libavcodec/shorten.c         for (i = 0; i < skip_bytes; i++)
skip_bytes        117 libavformat/mms.c                 uint64_t skip_bytes = 88;
skip_bytes        119 libavformat/mms.c                     if (end - p < skip_bytes + 4) {
skip_bytes        124 libavformat/mms.c                     skip_bytes += 4 + AV_RL16(p + skip_bytes + 2);
skip_bytes        127 libavformat/mms.c                     if (end - p < skip_bytes + 22) {
skip_bytes        132 libavformat/mms.c                     skip_bytes += 22 + AV_RL32(p + skip_bytes + 18);
skip_bytes        134 libavformat/mms.c                 if (end - p < skip_bytes) {
skip_bytes        139 libavformat/mms.c                 if (chunksize - skip_bytes > 24)
skip_bytes        140 libavformat/mms.c                     chunksize = skip_bytes;
skip_bytes        100 libavformat/rtmpproto.c     int           skip_bytes;                 ///< number of bytes to skip from the input FLV stream in the next write call
skip_bytes       2878 libavformat/rtmpproto.c         rt->skip_bytes = 13;
skip_bytes       2963 libavformat/rtmpproto.c         if (rt->skip_bytes) {
skip_bytes       2964 libavformat/rtmpproto.c             int skip = FFMIN(rt->skip_bytes, size_temp);
skip_bytes       2967 libavformat/rtmpproto.c             rt->skip_bytes -= skip;
skip_bytes       3019 libavformat/rtmpproto.c             rt->skip_bytes = 4;
skip_bytes        133 tests/tiny_psnr.c static int run_psnr(FILE *f[2], int len, int shift, int skip_bytes)
skip_bytes        171 tests/tiny_psnr.c         fseek(f[0], skip_bytes, SEEK_CUR);
skip_bytes        172 tests/tiny_psnr.c         fseek(f[1], skip_bytes, SEEK_CUR);
skip_bytes        270 tests/tiny_psnr.c     int skip_bytes = argc < 6 ? 0 : atoi(argv[5]);
skip_bytes        309 tests/tiny_psnr.c         int psnr = run_psnr(f, len, shift, skip_bytes);