Searched refs:skip (Results 1 - 25 of 77) sorted by path

1234

/frameworks/av/include/media/stagefright/
H A DSkipCutBuffer.h33 // 'skip' is the number of frames to skip from the beginning
36 SkipCutBuffer(size_t skip, size_t cut, size_t num16Channels);
/frameworks/av/media/img_utils/include/img_utils/
H A DInput.h57 virtual ssize_t skip(size_t count);
/frameworks/av/media/img_utils/src/
H A DInput.cpp28 ssize_t Input::skip(size_t count) { function in class:android::img_utils::Input
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c752 bool skip = false; local
756 skip = true;
780 if (skip) {
/frameworks/av/media/libstagefright/
H A DSkipCutBuffer.cpp27 SkipCutBuffer::SkipCutBuffer(size_t skip, size_t cut, size_t num16BitChannels) { argument
39 if (skip > INT32_MAX / frameSize || cut > INT32_MAX / frameSize
41 ALOGW("out of range skip/cut: %zu/%zu, using passthrough instead",
42 skip, cut);
45 skip *= frameSize;
48 mFrontPadding = mSkip = skip;
52 ALOGV("skipcutbuffer %zu %zu %d", skip, cut, mCapacity);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_transform.c81 skip skip processing of data[0], set to non-zero value
94 u32 h264bsdProcessBlock(i32 *data, u32 qp, u32 skip, u32 coeffMap) argument
112 if (!skip)
H A Dh264bsd_transform.h49 u32 h264bsdProcessBlock(i32 *data, u32 qp, u32 skip, u32 coeffMap);
/frameworks/av/media/libstagefright/foundation/include/
H A DSkipCutBuffer.h33 // 'skip' is the number of frames to skip from the beginning
36 SkipCutBuffer(size_t skip, size_t cut, size_t num16Channels);
/frameworks/av/media/libstagefright/include/
H A DSkipCutBuffer.h33 // 'skip' is the number of frames to skip from the beginning
36 SkipCutBuffer(size_t skip, size_t cut, size_t num16Channels);
/frameworks/av/media/libstagefright/mpeg2ts/
H A DATSParser.cpp247 void setSkipBytes(uint8_t skip);
587 // skip CA streams (EMM/ECM)
1796 unsigned skip = br->getBits(8); local
1797 section->setSkipBytes(skip + 1); // skip filler bytes + pointer field itself
1798 br->skipBits(skip * 8);
2200 void ATSParser::PSISection::setSkipBytes(uint8_t skip) { argument
2201 mSkipBytes = skip;
2244 ALOGV("sectionLength %u, skip %u", sectionLength, mSkipBytes);
/frameworks/av/media/libstagefright/rtsp/
H A DAH263Assembler.cpp135 size_t skip = V + PLEN + (P ? 0 : 2); local
137 buffer->setRange(buffer->offset() + skip, buffer->size() - skip);
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioPatch.cpp138 bool skip = false; local
139 for (size_t srcIndex = 0; srcIndex < patch->mPatch.num_sources && !skip; srcIndex++) {
142 skip = true;
145 for (size_t sinkIndex = 0; sinkIndex < patch->mPatch.num_sinks && !skip; sinkIndex++) {
148 skip = true;
151 if (skip) {
/frameworks/base/core/java/android/bluetooth/
H A DIBluetoothGatt.aidl71 void registerSync(in ScanResult scanResult, in int skip, in int timeout, in IPeriodicAdvertisingCallback callback);
/frameworks/base/core/java/android/bluetooth/le/
H A DIPeriodicAdvertisingCallback.aidl28 in int skip, in int timeout, in int status);
H A DPeriodicAdvertisingCallback.java54 * @param skip The number of periodic advertising packets that can be skipped
62 int advertisingSid, int skip, int timeout,
61 onSyncEstablished(int syncHandle, BluetoothDevice device, int advertisingSid, int skip, int timeout, int status) argument
H A DPeriodicAdvertisingManager.java75 * call to registerSync will use the {@code skip} and {@code timeout} provided.
77 * existing sync, thus {@code skip} and {@code timeout} values will not take
82 * @param skip The number of periodic advertising packets that can be skipped
88 * skip} is invalid or {@code timeout} is invalid or {@code callback} is null.
90 public void registerSync(ScanResult scanResult, int skip, int timeout, argument
92 registerSync(scanResult, skip, timeout, callback, null);
98 * call to registerSync will use the {@code skip} and {@code timeout} provided.
100 * existing sync, thus {@code skip} and {@code timeout} values will not take
105 * @param skip The number of periodic advertising packets that can be skipped
112 * skip} i
114 registerSync(ScanResult scanResult, int skip, int timeout, PeriodicAdvertisingCallback callback, Handler handler) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DLimitedLengthInputStream.java53 skip(offset);
/frameworks/base/core/java/android/content/res/
H A DAssetFileDescriptor.java206 super.skip(fd.getStartOffset());
243 public long skip(long count) throws IOException { method in class:AssetFileDescriptor.AutoCloseInputStream
247 long res = super.skip(count);
252 return super.skip(count);
H A DAssetManager.java646 public final long skip(long n) throws IOException { method in class:AssetManager.AssetInputStream
H A DFontResourcesParser.java137 skip(parser);
154 skip(parser);
188 skip(parser);
209 skip(parser);
217 private static void skip(XmlPullParser parser) throws XmlPullParserException, IOException { method in class:FontResourcesParser
/frameworks/base/core/java/android/os/
H A DMemoryFile.java321 public long skip(long n) throws IOException { method in class:MemoryFile.MemoryInputStream
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java1221 boolean skip = false;
1229 skip = true;
1233 if (!skip) {
/frameworks/base/core/java/android/util/
H A DBase64InputStream.java96 public long skip(long n) throws IOException { method in class:Base64InputStream
/frameworks/base/core/java/android/util/jar/
H A DStrictJarFile.java384 public long skip(long byteCount) throws IOException { method in class:StrictJarFile.JarFileInputStream
479 @Override public long skip(long byteCount) throws IOException { method in class:StrictJarFile.FDStream
/frameworks/base/core/java/com/android/internal/util/
H A DBitwiseInputStream.java110 public void skip(int bits) throws AccessException { method in class:BitwiseInputStream
112 throw new AccessException("illegal skip " +

Completed in 4886 milliseconds

1234