Lines Matching refs:status

42     PV_STATUS status;
81 status = RC_VopQPSetting(video, rc);
82 if (status == PV_FAIL)
98 return status;
101 status = EncodeVop_NoME(video);
110 return status;
130 PV_STATUS status = PV_SUCCESS;
135 status = EncodeShortHeader(stream, currVop); /* Encode Short Header */
139 status = EncodeFrameCombinedMode(video);
147 status = EncodeGOVHeader(stream, time); /* Encode GOV Header */
149 status = EncodeVOPHeader(stream, currVol, currVop); /* Encode VOP Header */
159 status = EncodeFrameDataPartMode(video); /* Encode Data Partitioning Mode VOP */
163 status = EncodeFrameCombinedMode(video); /* Encode Combined Mode VOP */
167 status = EncodeFrameCombinedMode(video); /* Encode Combined Mode VOP */
172 return status;
176 return status;
199 PV_STATUS status = PV_SUCCESS;
207 status = EncodeShortHeader(stream, currVop); /* Encode Short Header */
212 status = EncodeSliceCombinedMode(video);
222 status = EncodeGOVHeader(stream, time); /* Encode GOV Header */
224 status = EncodeVOPHeader(stream, currVol, currVop); /* Encode VOP Header */
235 status = EncodeSliceDataPartMode(video); /* Encode Data Partitioning Mode VOP */
239 status = EncodeSliceCombinedMode(video); /* Encode Combined Mode VOP */
243 status = EncodeSliceCombinedMode(video); /* Encode Combined Mode VOP */
248 return status;
252 if (video->mbnum >= currVol->nTotalMB && status != PV_END_OF_BUF) /* end of Vop */
259 status = RC_VopUpdateStat(video, rc[currLayer]);
262 return status;
278 PV_STATUS status;
286 status = BitstreamPutGT16Bits(stream, 32, GROUP_START_CODE);
289 status = BitstreamPutBits(stream, 5, tmpvar); /* Hours*/
292 status = BitstreamPutBits(stream, 6, tmpvar); /* Minutes*/
294 status = BitstreamPut1Bits(stream, 1); /* Marker*/
297 status = BitstreamPutBits(stream, 6, tmpvar); /* Seconds*/
299 status = BitstreamPut1Bits(stream, 1); /* closed_gov */
300 status = BitstreamPut1Bits(stream, 0); /* broken_link */
304 return status;
311 PV_STATUS status;
322 status = BitstreamPutGT16Bits(stream, 32, VOP_START_CODE); /*Start Code for VOP*/
323 status = BitstreamPutBits(stream, 2, P_VOP);/* VOP Coding Type*/
330 status = BitstreamPut1Bits(stream, 1);
333 status = BitstreamPut1Bits(stream, 0);
334 status = BitstreamPut1Bits(stream, 1); /* marker bit */
335 status = BitstreamPutBits(stream, currVol->nbitsTimeIncRes, timeInc); /* vop_time_increment */
336 status = BitstreamPut1Bits(stream, 1); /* marker bit */
337 status = BitstreamPut1Bits(stream, 0); /* vop_coded bit */
340 return status;
355 PV_STATUS status;
363 status = BitstreamPutGT16Bits(stream, 32, VOP_START_CODE); /*Start Code for VOP*/
364 status = BitstreamPutBits(stream, 2, currVop->predictionType);/* VOP Coding Type*/
370 status = BitstreamPut1Bits(stream, 1);
373 status = BitstreamPut1Bits(stream, 0);
375 status = BitstreamPut1Bits(stream, 1); /* marker bit */
376 status = BitstreamPutBits(stream, currVol->nbitsTimeIncRes, currVop->timeInc); /* vop_time_increment */
377 status = BitstreamPut1Bits(stream, 1); /* marker bit */
378 status = BitstreamPut1Bits(stream, currVop->vopCoded); /* vop_coded bit */
383 return status;
386 status = BitstreamPut1Bits(stream, currVop->roundingType); /* vop_rounding_type */
388 status = BitstreamPutBits(stream, 3, currVop->intraDCVlcThr); /* intra_dc_vlc_thr */
389 status = BitstreamPutBits(stream, 5, currVop->quantizer); /* vop_quant */
392 status = BitstreamPutBits(stream, 3, currVop->fcodeForward); /* vop_fcode_forward */
394 status = BitstreamPutBits(stream, 3, currVop->fcodeBackward);/* vop_fcode_backward */
398 status = BitstreamPutBits(stream, 2, currVop->refSelectCode); /* ref_select_code */
400 return status;
415 PV_STATUS status;
417 status = BitstreamPutGT16Bits(stream, 22, SHORT_VIDEO_START_MARKER); /* Short_video_start_marker */
418 status = BitstreamPutBits(stream, 8, currVop->temporalRef); /* temporal_reference */
419 status = BitstreamPut1Bits(stream, 1); /* marker bit */
420 status = BitstreamPut1Bits(stream, 0); /* zero bit */
421 status = BitstreamPut1Bits(stream, 0); /* split_screen_indicator=0*/
422 status = BitstreamPut1Bits(stream, 0); /* document_camera_indicator=0*/
423 status = BitstreamPut1Bits(stream, 0); /* full_picture_freeze_release=0*/
429 status = BitstreamPutBits(stream, 3, 1); /* source_format = 1 */
432 status = PV_FAIL;
433 return status;
439 status = BitstreamPutBits(stream, 3, 2); /* source_format = 2 */
442 status = PV_FAIL;
443 return status;
449 status = BitstreamPutBits(stream, 3, 3); /* source_format = 3 */
452 status = PV_FAIL;
453 return status;
459 status = BitstreamPutBits(stream, 3, 4); /* source_format = 4 */
462 status = PV_FAIL;
463 return status;
469 status = BitstreamPutBits(stream, 3, 5); /* source_format = 5 */
472 status = PV_FAIL;
473 return status;
478 status = PV_FAIL;
479 return status;
483 status = BitstreamPut1Bits(stream, currVop->predictionType); /* picture_coding type */
484 status = BitstreamPutBits(stream, 4, 0); /* four_reserved_zero_bits */
485 status = BitstreamPutBits(stream, 5, currVop->quantizer); /* vop_quant*/
486 status = BitstreamPut1Bits(stream, 0); /* zero_bit*/
487 status = BitstreamPut1Bits(stream, 0); /* pei=0 */
489 return status;
507 // PV_STATUS status=PV_SUCCESS;
548 /*status =*/
550 /*status = */
553 /*status = */
555 /*status = */
557 /*status = */
560 /*status = */
563 /*status = */
567 /*status = */ BitstreamPutBits(bs, 3, currVop->fcodeForward);
569 /*status = */ BitstreamPutBits(bs, 3, currVop->fcodeBackward);