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

  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
bitstream_io.cpp 405 /* Function : BitstreamAppendEnc( BitstreamEncVideo *bitstream1, */
409 /* output bitstream(bitstream1) */
416 PV_STATUS BitstreamAppendEnc(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2)
424 status = BitstreamSavePartial(bitstream1, &fraction);
437 if (!offset) /* bitstream1 is byte-aligned */
439 return BitstreamAppendPacket(bitstream1, bitstream2);
444 /* since bitstream1 doesn't have to be byte-aligned, we have to process byte by byte */
446 if (bitstream1->byteCount + bitstream2->byteCount + offset > bitstream1->bufferSize)
448 if (PV_SUCCESS != BitstreamUseOverrunBuffer(bitstream1, bitstream2->byteCount + offset)
    [all...]
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);
45 PV_STATUS BitstreamFlushBits(BitstreamEncVideo *bitstream1, Int num_bit_left);
46 PV_STATUS BitstreamPrependPacket(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2);
vop.cpp 46 // BitstreamEncVideo *stream=video->bitstream1;
128 BitstreamEncVideo *stream = video->bitstream1;
197 BitstreamEncVideo *stream = video->bitstream1; /* different from frame-based */
522 bs = video->bitstream1;
573 BitstreamPrependPacket(video->bitstream1, bs);
combined_encode.cpp 53 BitstreamEncVideo *bs1 = video->bitstream1;
284 BitstreamEncVideo *bs1 = video->bitstream1;
684 BitstreamEncVideo *stream = (bs1stream ? video->bitstream1 : video->vol[video->currLayer]->stream);
datapart_encode.cpp 51 BitstreamEncVideo *bs1 = video->bitstream1;
230 BitstreamEncVideo *bs1 = video->bitstream1;
mp4enc_api.cpp 725 video->bitstream1 = BitStreamCreateEnc(2 * 4096); /*allocate working stream 1*/
726 if (video->bitstream1 == NULL) goto CLEAN_UP;
    [all...]
mp4lib_int.h 336 BitstreamEncVideo *bitstream1; /* Used for data partitioning */ member in struct:tagVideoEncData
vlc_encode.cpp 887 BitstreamEncVideo *bs1 = video->bitstream1;
975 BitstreamEncVideo *bs1 = video->bitstream1;
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/
unittest.cc 150 rtc::Buffer bitstream1, bitstream2; local
152 EncodePacket<T>(encdec, nullptr, speech_data, &bitstream1);
159 ASSERT_EQ(bitstream1.size(), bitstream2.size());
160 EXPECT_EQ(bitstream1, bitstream2);
165 encdec, bitstream1.data(), bitstream1.size(), i, send_time,
166 channel1.Send(send_time, bitstream1.size())));
174 auto decoded1 = DecodePacket<T>(encdec, bitstream1);

Completed in 184 milliseconds