HomeSort by relevance Sort by last modified time
    Searched refs:eos (Results 51 - 75 of 117) sorted by null

1 23 4 5

  /external/lzma/CPP/7zip/Bundles/LzmaCon/
LzmaAlone.cpp 65 " -eos : write end of stream marker\n"
113 { "EOS", NSwitchType::kSimple, false },
621 bool eos = parser[NKey::kEOS].ThereIs || stdInMode; local
664 props[7].boolVal = eos ? VARIANT_TRUE : VARIANT_FALSE;
685 if (eos || stdInMode)
  /frameworks/av/media/libstagefright/
ACodecBufferChannel.cpp 218 int32_t eos;
219 if (it->mClientBuffer->meta()->findInt32("eos", &eos)) {
220 it->mCodecBuffer->meta()->setInt32("eos", eos);
NuMediaExtractor.cpp 643 int64_t *durationUs, bool *eos) const {
657 *eos = (finalStatus != OK);
MediaCodecSource.cpp 230 ALOGV("puller (%s) posting EOS", mIsAudio ? "audio" : "video");
232 msg->setInt32("eos", 1);
627 ALOGV("encoder (%s) reached EOS", mIsVideo ? "video" : "audio");
831 int32_t eos = 0; local
832 if (msg->findInt32("eos", &eos) && eos) {
833 ALOGV("puller (%s) reached EOS", mIsVideo ? "video" : "audio");
994 // if we already reached EOS, reply and return now
1011 // if using surface, signal source EOS and wait for EOS to come back
    [all...]
  /external/dhcpcd-6.8.2/
dhcp-common.c 800 size_t e, i, n, eos, eol; local
886 while ((eod = dgetopt(ctx, &eos, &eoc, &eol, od, ol, &oopt))) {
905 od += eos + eol;
906 ol -= eos + eol;
  /frameworks/base/media/java/android/media/
SRTRenderer.java 110 public void onData(byte[] data, boolean eos, long runID) {
TtmlRenderer.java 554 public void onData(byte[] data, boolean eos, long runID) {
568 if (eos) {
SubtitleTrack.java 81 onData(data.getData(), true /* eos */, runID);
91 * contents of a run are submitted in sequential order, with eos
96 * @param eos true if this is the last section of the run.
105 public abstract void onData(byte[] data, boolean eos, long runID);
WebVttRenderer.java 666 public void eos() { method in class:WebVttParser
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
GZIPInputStreamTest.java 57 return eos;
  /cts/tests/tests/media/src/android/media/cts/
MediaCodecTest.java 386 * <br> signaling EOS twice throws exception
387 * <br> submitting a frame after EOS throws exception [TODO]
410 // send an immediate EOS
415 fail("should not be able to signal EOS twice");
420 // submit a frame post-EOS
426 fail("should not be able to submit frame after EOS");
    [all...]
VideoEncoderTest.java 336 // queue decoder input EOS
337 if (DEBUG) Log.v(TAG, "queuing decoder EOS");
377 Log.d(TAG, "encoder received output EOS");
554 boolean eos = (info.flags & MediaCodec.BUFFER_FLAG_END_OF_STREAM) != 0;
561 if (ix < 0 && eos && mBuffersToRender.size() > 0) {
562 // move lone EOS flag to last buffer to be rendered
565 } else if (ix >= 0 || eos) {
568 if (eos) {
644 Log.d(TAG, "signaling encoder EOS");
735 Log.d(TAG, "signaling encoder EOS");
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
documenttest.cpp 138 OutputStream eos(bos, false); // Not writing BOM
139 Writer<OutputStream, UTF16<>, UTF8<> > writer(eos);
  /external/libpcap/
pcap-dlpi.c 851 char *eos; local
869 unit = strtol(cp, &eos, 10);
870 if (*eos != '\0') {
    [all...]
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
ByteStringTest.java 507 EvilOutputStream eos = new EvilOutputStream(); local
508 os.writeTo(eos);
509 byte[] capturedArray = eos.capturedArray;
  /external/webrtc/webrtc/base/
httpclient.cc 40 char* eos = NULL; local
41 *val = strtoul(str.c_str(), &eos, 10);
42 return (*eos == '\0');
  /frameworks/wilhelm/tests/examples/
slesTestDecodeAac.cpp 104 bool eos = false; variable
247 fprintf(stdout, "EOS was processed\n");
255 printf("Received EOS completion after EOS\n");
257 printf("Received ADTS completion after EOS\n");
259 fprintf(stderr, "Received acknowledgement after EOS with unexpected context %p\n",
263 // signal EOS to the decoder rather than just starving it
264 printf("Enqueue EOS: encoded frames=%zu, decoded frames=%zu\n", encodedFrames,
266 printf("You should now see %u ADTS completion%s followed by 1 EOS completion\n",
271 // EOS message has no parameters, so the total size of the message is the size of the ke
    [all...]
  /frameworks/wilhelm/tests/sandbox/
xaplay.c 55 XAboolean sentEOS = XA_BOOLEAN_FALSE; // whether we have enqueued EOS yet
168 static const XAAndroidBufferItem eos = {XA_ANDROID_ITEMKEY_EOS, 0, {}}; local
180 printf("buffer completion callback after EOS\n");
183 printf("sending EOS\n");
184 items = &eos;
185 itemSize = sizeof(eos);
    [all...]
  /hardware/intel/common/libmix/mix_video/src/
mixvideoformatenc_mpeg4.c 80 video_formatenc_class->eos = mix_videofmtenc_mpeg4_eos;
826 if (parent_class->eos) {
827 return parent_class->eos(mix);
    [all...]
mixvideoformatenc_preview.c 80 video_formatenc_class->eos = mix_videofmtenc_preview_eos;
771 if (parent_class->eos) {
772 return parent_class->eos(mix);
    [all...]
mixvideoformat_h264.c 68 video_format_class->eos = mix_videofmt_h264_eos;
860 if (parent_class->eos) {
861 return parent_class->eos(mix, msg);
    [all...]
mixvideoformat_vc1.c 77 video_format_class->eos = mix_videofmt_vc1_eos;
    [all...]
mixvideoformatenc_h264.c 80 video_formatenc_class->eos = mix_videofmtenc_h264_eos;
844 if (parent_class->eos) {
845 return parent_class->eos(mix);
    [all...]
  /external/libogg/src/
framing.c 776 int eos=ogg_page_eos(og); local
884 if(eos){
961 int eos=os->lacing_vals[ptr]&0x200; /* last packet of the stream? */ local
967 if(val&0x200)eos=0x200;
972 op->e_o_s=eos;
    [all...]
  /external/icu/icu4c/source/common/
messagepattern.cpp 784 UBool eos=index==msg.length(); local
785 if(eos || msg.charAt(index)==u_rightCurlyBrace) {
786 if(eos==inMessageFormatPattern(nestingLevel)) {
    [all...]

Completed in 2124 milliseconds

1 23 4 5