HomeSort by relevance Sort by last modified time
    Searched refs:bitstream2 (Results 1 - 7 of 7) sorted by null

  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
bitstream_io.h 41 PV_STATUS BitstreamAppendEnc(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2);
42 PV_STATUS BitstreamAppendPacket(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2);
43 PV_STATUS BitstreamAppendPacketNoOffset(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2);
46 PV_STATUS BitstreamPrependPacket(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2);
bitstream_io.cpp 406 /* BitstreamEncVideo *bitstream2 ) */
408 /* Purpose : Append the intermediate bitstream (bitstream2) to the end of */
416 PV_STATUS BitstreamAppendEnc(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2)
431 status = BitstreamSavePartial(bitstream2, &fraction);
439 return BitstreamAppendPacket(bitstream1, bitstream2);
445 /* we read one byte from bitstream2 and use BitstreamPutBits to do the job */
446 if (bitstream1->byteCount + bitstream2->byteCount + offset > bitstream1->bufferSize)
448 if (PV_SUCCESS != BitstreamUseOverrunBuffer(bitstream1, bitstream2->byteCount + offset))
450 bitstream1->byteCount += (bitstream2->byteCount + offset);
456 ptrBS2 = bitstream2->bitstreamBuffer
    [all...]
datapart_encode.cpp 52 BitstreamEncVideo *bs2 = video->bitstream2;
231 BitstreamEncVideo *bs2 = video->bitstream2;
mp4lib_int.h 337 BitstreamEncVideo *bitstream2; /* and combined modes as */ member in struct:tagVideoEncData
mp4enc_api.cpp 727 video->bitstream2 = BitStreamCreateEnc(2 * 4096); /*allocate working stream 2*/
728 if (video->bitstream2 == NULL) goto CLEAN_UP;
    [all...]
vlc_encode.cpp 888 BitstreamEncVideo *bs2 = video->bitstream2;
976 BitstreamEncVideo *bs2 = video->bitstream2;
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/
unittest.cc 150 rtc::Buffer bitstream1, bitstream2; local
153 int duration2_ms = EncodePacket<T>(enc, &bi, speech_data, &bitstream2);
159 ASSERT_EQ(bitstream1.size(), bitstream2.size());
160 EXPECT_EQ(bitstream1, bitstream2);
168 dec, bitstream2.data(), bitstream2.size(), i, send_time,
169 channel2.Send(send_time, bitstream2.size())));
175 auto decoded2 = DecodePacket<T>(dec, bitstream2);

Completed in 633 milliseconds