HomeSort by relevance Sort by last modified time
    Searched full:discontinuity (Results 1 - 25 of 62) sorted by null

1 2 3

  /frameworks/av/include/media/
IStreamSource.h 52 DISCONTINUITY,
57 // When signalling a discontinuity you can optionally
59 // If present, rendering of data following the discontinuity
63 // When signalling a discontinuity you can optionally
64 // specify the type(s) of discontinuity, i.e. if the
68 // under the key "kKeyDiscontinuityMask" when issuing the DISCONTINUITY
74 // If this key is not present, only a time discontinuity is assumed.
79 // Optionally signalled as part of a discontinuity that includes
  /frameworks/av/media/libstagefright/mpeg2ts/
AnotherPacketSource.cpp 82 int32_t discontinuity; local
83 if (buffer->meta()->findInt32("discontinuity", &discontinuity)) {
109 int32_t discontinuity; local
110 if ((*buffer)->meta()->findInt32("discontinuity", &discontinuity)) {
111 if (wasFormatChange(discontinuity)) {
142 int32_t discontinuity; local
143 if (buffer->meta()->findInt32("discontinuity", &discontinuity)) {
    [all...]
AnotherPacketSource.h 49 // presentation timestamps since the last discontinuity (if any).
ATSParser.h 46 // For legacy reasons this also implies a time discontinuity.
  /development/ndk/platforms/android-14/samples/native-media/jni/
native-media-jni.c 90 // The mutex protects reachedEof, discontinuity,
91 // The condition is signalled when a discontinuity is acknowledged.
96 // whether a discontinuity is in progress
97 static jboolean discontinuity = JNI_FALSE; variable
99 static jboolean enqueueInitialBuffers(jboolean discontinuity);
118 // note there is never any contention on this mutex unless a discontinuity request is active
122 // was a discontinuity requested?
123 if (discontinuity) {
132 // Enqueue the initial buffers, with a discontinuity indicator on first buffer
135 // acknowledge the discontinuity reques
    [all...]
  /frameworks/wilhelm/tests/native-media/jni/
native-media-jni.c 79 // whether a discontinuity is in progress
80 jboolean discontinuity = JNI_FALSE; variable
82 static jboolean enqueueInitialBuffers(jboolean discontinuity);
108 // note there is never any contention on this mutex unless a discontinuity request is active
112 // was a discontinuity requested?
113 if (discontinuity) {
121 // Enqueue the initial buffers, with a discontinuity indicator on first buffer
124 // acknowledge the discontinuity request
125 discontinuity = JNI_FALSE;
295 // Enqueue the initial buffers, and optionally signal a discontinuity in the first buffe
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkBitmapFilter.h 146 return 1.0f; // Special case the sinc discontinuity at the origin.
166 return 1.0f; // Special case the discontinuity at the origin.
SkMaskGamma.cpp 90 //Remove discontinuity and instability when src is close to dst.
  /external/skia/src/core/
SkBitmapFilter.h 146 return 1.0f; // Special case the sinc discontinuity at the origin.
166 return 1.0f; // Special case the discontinuity at the origin.
SkMaskGamma.cpp 90 //Remove discontinuity and instability when src is close to dst.
  /external/chromium_org/third_party/opus/src/src/
opus.c 45 discontinuity in the derivative. */
57 any discontinuity. */
114 This avoids a discontinuity at the beginning of the frame. */
  /frameworks/wilhelm/tests/sandbox/
xaplay.c 46 size_t discPacket; // discontinuity packet index, defaults to no discontinuity requested
47 size_t afterDiscPacket; // packet index to switch to after the discontinuity
166 static const XAAndroidBufferItem discontinuity = {XA_ANDROID_ITEMKEY_DISCONTINUITY, 0}; local
186 // discontinuity requested?
188 printf("sending discontinuity at packet %zu, then resuming at packet %zu\n", discPacket,
190 items = &discontinuity;
191 itemSize = sizeof(discontinuity);
301 fprintf(stderr, " -d# Packet index to insert a discontinuity, default is none\n");
302 fprintf(stderr, " -D# Packet index to switch to after the discontinuity\n")
    [all...]
  /frameworks/wilhelm/tests/sandbox/streamSource/
slesTestPlayStream.cpp 47 /* Special discontinuity buffer context */
50 /* structure to store my discontinuity with PTS command */
97 // we've cleared the queue, and have introduced a discontinuity, so signal it
121 // enqueue discontinuity message with our PTS
145 // just like we do for signalling DISCONTINUITY (above) or EOS (below)
147 fprintf(stdout, "Successfully detected my discontinuity buffer having been consumed\n");
  /development/samples/devbytes/animation/CurvedMotion/src/com/example/android/curvedmotion/
AnimatorPath.java 36 * specified by x and y. This will create a discontinuity if this point is
  /frameworks/av/media/libstagefright/httplive/
LiveSession.h 84 // create a format-change discontinuity
87 // whether is format-change discontinuity should trigger a buffer swap
LiveSession.cpp 90 ABuffer *discontinuity = new ABuffer(0); local
91 discontinuity->meta()->setInt32("discontinuity", ATSParser::DISCONTINUITY_FORMATCHANGE);
92 discontinuity->meta()->setInt32("swapPacketSource", swap);
93 discontinuity->meta()->setInt32("switchGeneration", mSwitchGeneration);
94 discontinuity->meta()->setInt64("timeUs", -1);
95 return discontinuity;
141 CHECK((*accessUnit)->meta()->findInt32("discontinuity", &type));
148 ALOGI("[%s] read discontinuity of type %d, extra = %s",
    [all...]
PlaylistFetcher.cpp 782 // number available and signal a discontinuity.
816 if (itemMeta->findInt32("discontinuity", &val) && val != 0) {
878 // Signal discontinuity.
888 ALOGI("queueing discontinuity (seek=%d, explicit=%d)",
    [all...]
  /frameworks/wilhelm/src/android/
android_defs.h 132 // buffer marks a discontinuity with previous TS data, resume display as soon as possible
134 // buffer marks a discontinuity with previous TS data, resume display upon reaching the
android_StreamPlayer.cpp 159 receivedCmd_l(IStreamListener::DISCONTINUITY);
164 receivedCmd_l(IStreamListener::DISCONTINUITY, msg /*msg*/);
171 receivedCmd_l(IStreamListener::DISCONTINUITY, msg /*msg*/);
178 receivedCmd_l(IStreamListener::DISCONTINUITY, msg /*msg*/);
183 // some commands may introduce a time discontinuity, reevaluate position if needed
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerStreamListener.cpp 126 case DISCONTINUITY:
StreamingSource.cpp 90 ALOGE("Client specified an illegal discontinuity type.");
  /frameworks/av/cmds/stagefright/
stream.cpp 96 ALOGI("signalling discontinuity now");
107 IStreamListener::DISCONTINUITY, false /* synchronous */, extra);
  /external/libvorbis/doc/vorbisfile/
crosslap.html 41 becomes audible as a stairstep discontinuity. Even if the discrepancy
seeking.html 32 automatic crosslapping to eliminate clicks and other discontinuity
  /frameworks/av/media/libmedia/
IStreamSource.cpp 33 const char *const IStreamListener::kKeyDiscontinuityMask = "discontinuity-mask";

Completed in 2023 milliseconds

1 2 3