Lines Matching defs: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;
1389 Bool status = PV_TRUE;
1455 return status;
1589 return status;
1668 return status;
1683 Bool status = PV_TRUE;
1732 return status;
1857 return status;
2440 PV_STATUS status = PV_SUCCESS;
2449 return status;
2457 status = BitstreamPutGT16Bits(stream, 32, SESSION_START_CODE);
2459 status = BitstreamPutBits(stream, 8, video->encParams->ProfileLevel[video->currLayer]);
2465 status = BitstreamPutGT16Bits(stream, 32, VISUAL_OBJECT_START_CODE);
2466 status = BitstreamPut1Bits(stream, 0x00); /* visual object identifier */
2467 status = BitstreamPutBits(stream, 4, 0x01); /* visual object Type == "video ID" */
2468 status = BitstreamPut1Bits(stream, 0x00); /* no video signal type */
2474 status = BitstreamPutGT16Bits(stream, 27, VO_START_CODE);/* byte align: should be 2 bits */
2475 status = BitstreamPutBits(stream, 5, 0x00);/* Video ID = 0 */
2484 status = BitstreamPutGT16Bits(stream, VOL_START_CODE_LENGTH, VOL_START_CODE);
2485 status = BitstreamPutBits(stream, 4, currVol->volID);/* video_object_layer_id */
2486 status = BitstreamPut1Bits(stream, 0x00);/* Random Access = 0 */
2489 status = BitstreamPutBits(stream, 8, 0x01);/* Video Object Type Indication = 1 ... Simple Object Type */
2491 status = BitstreamPutBits(stream, 8, 0x02);/* Video Object Type Indication = 2 ... Simple Scalable Object Type */
2493 status = BitstreamPut1Bits(stream, 0x00);/* is_object_layer_identifer = 0 */
2496 status = BitstreamPutBits(stream, 4, 0x01); /* aspect_ratio_info = 1 ... 1:1(Square) */
2497 status = BitstreamPut1Bits(stream, 0x00);/* vol_control_parameters = 0 */
2498 status = BitstreamPutBits(stream, 2, 0x00);/* video_object_layer_shape = 00 ... rectangular */
2499 status = BitstreamPut1Bits(stream, 0x01);/* marker bit */
2500 status = BitstreamPutGT8Bits(stream, 16, currVol->timeIncrementResolution);/* vop_time_increment_resolution */
2501 status = BitstreamPut1Bits(stream, 0x01);/* marker bit */
2502 status = BitstreamPut1Bits(stream, currVol->fixedVopRate);/* fixed_vop_rate = 0 */
2505 status = BitstreamPut1Bits(stream, 0x01);/* marker bit */
2506 status = BitstreamPutGT8Bits(stream, 13, currVol->width);/* video_object_layer_width */
2507 status = BitstreamPut1Bits(stream, 0x01);/* marker bit */
2508 status = BitstreamPutGT8Bits(stream, 13, currVol->height);/* video_object_layer_height */
2509 status = BitstreamPut1Bits(stream, 0x01);/*marker bit */
2511 status = BitstreamPut1Bits(stream, 0x00);/*interlaced = 0 */
2512 status = BitstreamPut1Bits(stream, 0x01);/* obmc_disable = 1 */
2513 status = BitstreamPut1Bits(stream, 0x00);/* sprite_enable = 0 */
2514 status = BitstreamPut1Bits(stream, 0x00);/* not_8_bit = 0 */
2515 status = BitstreamPut1Bits(stream, currVol->quantType);/* quant_type */
2519 status = BitstreamPut1Bits(stream, currVol->loadIntraQuantMat); /* Intra quant matrix */
2538 status = BitstreamPut1Bits(stream, currVol->loadNonIntraQuantMat); /* Non-Intra quant matrix */
2558 status = BitstreamPut1Bits(stream, 0x01); /* complexity_estimation_disable = 1 */
2559 status = BitstreamPut1Bits(stream, currVol->ResyncMarkerDisable);/* Resync_marker_disable */
2560 status = BitstreamPut1Bits(stream, currVol->dataPartitioning);/* Data partitioned */
2563 status = BitstreamPut1Bits(stream, currVol->useReverseVLC); /* Reversible_vlc */
2569 status = BitstreamPut1Bits(stream, currVol->scalability);/* Scalability = 1 */
2570 status = BitstreamPut1Bits(stream, currVol->scalType);/* hierarchy _type ... Spatial= 0 and Temporal = 1 */
2571 status = BitstreamPutBits(stream, 4, currVol->refVolID);/* ref_layer_id */
2572 status = BitstreamPut1Bits(stream, currVol->refSampDir);/* ref_layer_sampling_direc*/
2573 status = BitstreamPutBits(stream, 5, currVol->horSamp_n);/*hor_sampling_factor_n*/
2574 status = BitstreamPutBits(stream, 5, currVol->horSamp_m);/*hor_sampling_factor_m*/
2575 status = BitstreamPutBits(stream, 5, currVol->verSamp_n);/*vert_sampling_factor_n*/
2576 status = BitstreamPutBits(stream, 5, currVol->verSamp_m);/*vert_sampling_factor_m*/
2577 status = BitstreamPut1Bits(stream, currVol->enhancementType);/* enhancement_type*/
2580 status = BitstreamPut1Bits(stream, currVol->scalability);/* Scalability = 0 */
2587 return status;
2602 PV_STATUS status = PV_SUCCESS;
2608 status = BitstreamPutBits(stream, SESSION_END_CODE, 32);
2610 return status;
2859 Int UpdateSkipNextFrame(VideoEncData *video, ULong *modTime, Int *size, PV_STATUS status)
2881 if (RC_GetSkipNextFrame(video, currLayer) < 0 || status == PV_END_OF_BUF) /* Skip Current Frame */