Lines Matching refs:status

140 Int UpdateSkipNextFrame(VideoEncData *video, ULong *modTime, Int *size, PV_STATUS status);
196 Bool status = PV_TRUE;
629 if (mbsPerSec > video->encParams->LayerMaxMbsPerSec[idx]) status = PV_FALSE;
636 status = SetProfile_BufferSize(video, video->encParams->VBV_delay, 1);
637 if (status != PV_TRUE)
996 status = PV_FALSE;
1006 status = PV_FALSE;
1015 status = PV_FALSE;
1025 status = PV_FALSE;
1034 status = PV_FALSE;
1038 status = PV_FALSE;
1385 Bool status = PV_TRUE;
1451 return status;
1585 return status;
1664 return status;
1679 Bool status = PV_TRUE;
1728 return status;
1853 return status;
2436 PV_STATUS status = PV_SUCCESS;
2445 return status;
2453 status = BitstreamPutGT16Bits(stream, 32, SESSION_START_CODE);
2455 status = BitstreamPutBits(stream, 8, video->encParams->ProfileLevel[video->currLayer]);
2461 status = BitstreamPutGT16Bits(stream, 32, VISUAL_OBJECT_START_CODE);
2462 status = BitstreamPut1Bits(stream, 0x00); /* visual object identifier */
2463 status = BitstreamPutBits(stream, 4, 0x01); /* visual object Type == "video ID" */
2464 status = BitstreamPut1Bits(stream, 0x00); /* no video signal type */
2470 status = BitstreamPutGT16Bits(stream, 27, VO_START_CODE);/* byte align: should be 2 bits */
2471 status = BitstreamPutBits(stream, 5, 0x00);/* Video ID = 0 */
2480 status = BitstreamPutGT16Bits(stream, VOL_START_CODE_LENGTH, VOL_START_CODE);
2481 status = BitstreamPutBits(stream, 4, currVol->volID);/* video_object_layer_id */
2482 status = BitstreamPut1Bits(stream, 0x00);/* Random Access = 0 */
2485 status = BitstreamPutBits(stream, 8, 0x01);/* Video Object Type Indication = 1 ... Simple Object Type */
2487 status = BitstreamPutBits(stream, 8, 0x02);/* Video Object Type Indication = 2 ... Simple Scalable Object Type */
2489 status = BitstreamPut1Bits(stream, 0x00);/* is_object_layer_identifer = 0 */
2492 status = BitstreamPutBits(stream, 4, 0x01); /* aspect_ratio_info = 1 ... 1:1(Square) */
2493 status = BitstreamPut1Bits(stream, 0x00);/* vol_control_parameters = 0 */
2494 status = BitstreamPutBits(stream, 2, 0x00);/* video_object_layer_shape = 00 ... rectangular */
2495 status = BitstreamPut1Bits(stream, 0x01);/* marker bit */
2496 status = BitstreamPutGT8Bits(stream, 16, currVol->timeIncrementResolution);/* vop_time_increment_resolution */
2497 status = BitstreamPut1Bits(stream, 0x01);/* marker bit */
2498 status = BitstreamPut1Bits(stream, currVol->fixedVopRate);/* fixed_vop_rate = 0 */
2501 status = BitstreamPut1Bits(stream, 0x01);/* marker bit */
2502 status = BitstreamPutGT8Bits(stream, 13, currVol->width);/* video_object_layer_width */
2503 status = BitstreamPut1Bits(stream, 0x01);/* marker bit */
2504 status = BitstreamPutGT8Bits(stream, 13, currVol->height);/* video_object_layer_height */
2505 status = BitstreamPut1Bits(stream, 0x01);/*marker bit */
2507 status = BitstreamPut1Bits(stream, 0x00);/*interlaced = 0 */
2508 status = BitstreamPut1Bits(stream, 0x01);/* obmc_disable = 1 */
2509 status = BitstreamPut1Bits(stream, 0x00);/* sprite_enable = 0 */
2510 status = BitstreamPut1Bits(stream, 0x00);/* not_8_bit = 0 */
2511 status = BitstreamPut1Bits(stream, currVol->quantType);/* quant_type */
2515 status = BitstreamPut1Bits(stream, currVol->loadIntraQuantMat); /* Intra quant matrix */
2534 status = BitstreamPut1Bits(stream, currVol->loadNonIntraQuantMat); /* Non-Intra quant matrix */
2554 status = BitstreamPut1Bits(stream, 0x01); /* complexity_estimation_disable = 1 */
2555 status = BitstreamPut1Bits(stream, currVol->ResyncMarkerDisable);/* Resync_marker_disable */
2556 status = BitstreamPut1Bits(stream, currVol->dataPartitioning);/* Data partitioned */
2559 status = BitstreamPut1Bits(stream, currVol->useReverseVLC); /* Reversible_vlc */
2565 status = BitstreamPut1Bits(stream, currVol->scalability);/* Scalability = 1 */
2566 status = BitstreamPut1Bits(stream, currVol->scalType);/* hierarchy _type ... Spatial= 0 and Temporal = 1 */
2567 status = BitstreamPutBits(stream, 4, currVol->refVolID);/* ref_layer_id */
2568 status = BitstreamPut1Bits(stream, currVol->refSampDir);/* ref_layer_sampling_direc*/
2569 status = BitstreamPutBits(stream, 5, currVol->horSamp_n);/*hor_sampling_factor_n*/
2570 status = BitstreamPutBits(stream, 5, currVol->horSamp_m);/*hor_sampling_factor_m*/
2571 status = BitstreamPutBits(stream, 5, currVol->verSamp_n);/*vert_sampling_factor_n*/
2572 status = BitstreamPutBits(stream, 5, currVol->verSamp_m);/*vert_sampling_factor_m*/
2573 status = BitstreamPut1Bits(stream, currVol->enhancementType);/* enhancement_type*/
2576 status = BitstreamPut1Bits(stream, currVol->scalability);/* Scalability = 0 */
2583 return status;
2598 PV_STATUS status = PV_SUCCESS;
2604 status = BitstreamPutBits(stream, SESSION_END_CODE, 32);
2606 return status;
2855 Int UpdateSkipNextFrame(VideoEncData *video, ULong *modTime, Int *size, PV_STATUS status)
2877 if (RC_GetSkipNextFrame(video, currLayer) < 0 || status == PV_END_OF_BUF) /* Skip Current Frame */