| /external/mesa3d/src/gallium/frontends/vdpau/ |
| D | decode.c | 228 vlVdpDecoderRenderMpeg12(struct pipe_mpeg12_picture_desc *picture, in vlVdpDecoderRenderMpeg12() argument 235 r = vlVdpGetReferenceFrame(picture_info->forward_reference, &picture->ref[0]); in vlVdpDecoderRenderMpeg12() 239 r = vlVdpGetReferenceFrame(picture_info->backward_reference, &picture->ref[1]); in vlVdpDecoderRenderMpeg12() 243 picture->picture_coding_type = picture_info->picture_coding_type; in vlVdpDecoderRenderMpeg12() 244 picture->picture_structure = picture_info->picture_structure; in vlVdpDecoderRenderMpeg12() 245 picture->frame_pred_frame_dct = picture_info->frame_pred_frame_dct; in vlVdpDecoderRenderMpeg12() 246 picture->q_scale_type = picture_info->q_scale_type; in vlVdpDecoderRenderMpeg12() 247 picture->alternate_scan = picture_info->alternate_scan; in vlVdpDecoderRenderMpeg12() 248 picture->intra_vlc_format = picture_info->intra_vlc_format; in vlVdpDecoderRenderMpeg12() 249 picture->concealment_motion_vectors = picture_info->concealment_motion_vectors; in vlVdpDecoderRenderMpeg12() [all …]
|
| /external/webp/src/enc/ |
| D | picture_enc.c | 26 const WebPPicture* const picture) { in DummyWriter() argument 30 (void)picture; in DummyWriter() 34 int WebPPictureInitInternal(WebPPicture* picture, int version) { in WebPPictureInitInternal() argument 38 if (picture != NULL) { in WebPPictureInitInternal() 39 memset(picture, 0, sizeof(*picture)); in WebPPictureInitInternal() 40 picture->writer = DummyWriter; in WebPPictureInitInternal() 41 WebPEncodingSetError(picture, VP8_ENC_OK); in WebPPictureInitInternal() 48 int WebPValidatePicture(const WebPPicture* const picture) { in WebPValidatePicture() argument 49 if (picture == NULL) return 0; in WebPValidatePicture() 50 if (picture->width <= 0 || picture->height <= 0) { in WebPValidatePicture() [all …]
|
| D | picture_csp_enc.c | 69 int WebPPictureHasTransparency(const WebPPicture* picture) { in WebPPictureHasTransparency() argument 70 if (picture == NULL) return 0; in WebPPictureHasTransparency() 71 if (picture->use_argb) { in WebPPictureHasTransparency() 72 if (picture->argb != NULL) { in WebPPictureHasTransparency() 73 return CheckNonOpaque((const uint8_t*)picture->argb + ALPHA_OFFSET, in WebPPictureHasTransparency() 74 picture->width, picture->height, in WebPPictureHasTransparency() 75 4, picture->argb_stride * sizeof(*picture->argb)); in WebPPictureHasTransparency() 79 return CheckNonOpaque(picture->a, picture->width, picture->height, in WebPPictureHasTransparency() 80 1, picture->a_stride); in WebPPictureHasTransparency() 180 WebPPicture* const picture) { in PreprocessARGB() argument [all …]
|
| D | picture_rescale_enc.c | 88 int WebPPictureIsView(const WebPPicture* picture) { in WebPPictureIsView() argument 89 if (picture == NULL) return 0; in WebPPictureIsView() 90 if (picture->use_argb) { in WebPPictureIsView() 91 return (picture->memory_argb_ == NULL); in WebPPictureIsView() 93 return (picture->memory_ == NULL); in WebPPictureIsView() 128 // Picture cropping 171 // Simple picture rescaler 207 int WebPPictureRescale(WebPPicture* picture, int width, int height) { in WebPPictureRescale() argument 212 if (picture == NULL) return 0; in WebPPictureRescale() 213 prev_width = picture->width; in WebPPictureRescale() [all …]
|
| /external/mesa3d/src/gallium/drivers/d3d12/ |
| D | d3d12_video_enc_hevc.cpp | 36 pipe_h265_enc_picture_desc *picture) in d3d12_video_encoder_update_current_rate_control_hevc() argument 38 assert(picture->pic.temporal_id < ARRAY_SIZE(pipe_h265_enc_picture_desc::rc)); in d3d12_video_encoder_update_current_rate_control_hevc() 39 …assert(picture->pic.temporal_id < std::max(static_cast<uint8_t>(1u), pD3D12Enc->m_currentEncodeCon… in d3d12_video_encoder_update_current_rate_control_hevc() 40 … assert(picture->pic.temporal_id < ARRAY_SIZE(D3D12EncodeConfiguration::m_encoderRateControlDesc)); in d3d12_video_encoder_update_current_rate_control_hevc() 42 …_prevRCState = pD3D12Enc->m_currentEncodeConfig.m_encoderRateControlDesc[picture->pic.temporal_id]; in d3d12_video_encoder_update_current_rate_control_hevc() 43 pD3D12Enc->m_currentEncodeConfig.m_activeRateControlIndex = picture->pic.temporal_id; in d3d12_video_encoder_update_current_rate_control_hevc() 44 pD3D12Enc->m_currentEncodeConfig.m_encoderRateControlDesc[picture->pic.temporal_id] = {}; in d3d12_video_encoder_update_current_rate_control_hevc() 45 …pD3D12Enc->m_currentEncodeConfig.m_encoderRateControlDesc[picture->pic.temporal_id].m_FrameRate.Nu… in d3d12_video_encoder_update_current_rate_control_hevc() 46 picture->rc[picture->pic.temporal_id].frame_rate_num; in d3d12_video_encoder_update_current_rate_control_hevc() 47 …pD3D12Enc->m_currentEncodeConfig.m_encoderRateControlDesc[picture->pic.temporal_id].m_FrameRate.De… in d3d12_video_encoder_update_current_rate_control_hevc() [all …]
|
| D | d3d12_video_enc_h264.cpp | 36 pipe_h264_enc_picture_desc *picture) in d3d12_video_encoder_update_current_rate_control_h264() argument 38 struct pipe_h264_enc_picture_desc *h264Pic = (struct pipe_h264_enc_picture_desc *) picture; in d3d12_video_encoder_update_current_rate_control_h264() 44 …_prevRCState = pD3D12Enc->m_currentEncodeConfig.m_encoderRateControlDesc[picture->pic_ctrl.tempora… in d3d12_video_encoder_update_current_rate_control_h264() 48 picture->rate_ctrl[h264Pic->pic_ctrl.temporal_id].frame_rate_num; in d3d12_video_encoder_update_current_rate_control_h264() 50 picture->rate_ctrl[h264Pic->pic_ctrl.temporal_id].frame_rate_den; in d3d12_video_encoder_update_current_rate_control_h264() 53 if (picture->roi.num > 0) in d3d12_video_encoder_update_current_rate_control_h264() 57 switch (picture->rate_ctrl[h264Pic->pic_ctrl.temporal_id].rate_ctrl_method) { in d3d12_video_encoder_update_current_rate_control_h264() 63 picture->rate_ctrl[h264Pic->pic_ctrl.temporal_id].target_bitrate; in d3d12_video_encoder_update_current_rate_control_h264() 65 picture->rate_ctrl[h264Pic->pic_ctrl.temporal_id].peak_bitrate; in d3d12_video_encoder_update_current_rate_control_h264() 76 } else if (picture->rate_ctrl[h264Pic->pic_ctrl.temporal_id].app_requested_hrd_buffer) { in d3d12_video_encoder_update_current_rate_control_h264() [all …]
|
| D | d3d12_video_enc_av1.cpp | 35 pipe_av1_enc_picture_desc *picture) in d3d12_video_encoder_update_current_rate_control_av1() argument 37 assert(picture->temporal_id < ARRAY_SIZE(pipe_av1_enc_picture_desc::rc)); in d3d12_video_encoder_update_current_rate_control_av1() 38 assert(picture->temporal_id < ARRAY_SIZE(D3D12EncodeConfiguration::m_encoderRateControlDesc)); in d3d12_video_encoder_update_current_rate_control_av1() 40 …te m_prevRCState = pD3D12Enc->m_currentEncodeConfig.m_encoderRateControlDesc[picture->temporal_id]; in d3d12_video_encoder_update_current_rate_control_av1() 41 pD3D12Enc->m_currentEncodeConfig.m_activeRateControlIndex = picture->temporal_id; in d3d12_video_encoder_update_current_rate_control_av1() 42 pD3D12Enc->m_currentEncodeConfig.m_encoderRateControlDesc[picture->temporal_id] = {}; in d3d12_video_encoder_update_current_rate_control_av1() 43 …urrentEncodeConfig.m_encoderRateControlDesc[picture->temporal_id].m_FrameRate.Numerator = picture-… in d3d12_video_encoder_update_current_rate_control_av1() 44 …rrentEncodeConfig.m_encoderRateControlDesc[picture->temporal_id].m_FrameRate.Denominator = picture… in d3d12_video_encoder_update_current_rate_control_av1() 45 …pD3D12Enc->m_currentEncodeConfig.m_encoderRateControlDesc[picture->temporal_id].m_Flags = D3D12_VI… in d3d12_video_encoder_update_current_rate_control_av1() 47 if (picture->roi.num > 0) in d3d12_video_encoder_update_current_rate_control_av1() [all …]
|
| /external/flac/src/share/grabbag/ |
| D | picture.c | 44 …tic FLAC__bool local__parse_type_(const char *s, size_t len, FLAC__StreamMetadata_Picture *picture) in local__parse_type_() argument 49 picture->type = FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER; in local__parse_type_() 62 picture->type = val; in local__parse_type_() 69 …AC__bool local__parse_resolution_(const char *s, size_t len, FLAC__StreamMetadata_Picture *picture) in local__parse_resolution_() argument 75 picture->width = picture->height = picture->depth = picture->colors = 0; in local__parse_resolution_() 83 picture->width = val; in local__parse_resolution_() 85 picture->height = val; in local__parse_resolution_() 93 picture->depth = val; in local__parse_resolution_() 108 picture->depth = val; in local__parse_resolution_() 110 picture->colors = val; in local__parse_resolution_() [all …]
|
| /external/robolectric/integration_tests/nativegraphics/src/test/java/org/robolectric/shadows/ |
| D | ShadowNativePictureTest.java | 15 import android.graphics.Picture; 31 // This method tests out some edge cases w.r.t. Picture creation. 33 // the created picture (effectively) has balanced saves and restores: 34 // - copy constructed picture from actively recording picture 35 // - actively recording picture after draw call 38 Picture original = new Picture(); in testSaveRestoreBalance() 45 Picture copy = new Picture(original); in testSaveRestoreBalance() 66 private void verifyBalance(Picture picture) { in verifyBalance() argument 77 canvas.drawPicture(picture); in verifyBalance() 91 Picture picture = new Picture(); in testPicture() local [all …]
|
| /external/flac/src/metaflac/ |
| D | operations_shorthand_picture.c | 33 static FLAC__bool import_pic_from(const char *filename, FLAC__StreamMetadata **picture, const char … 34 static FLAC__bool export_pic_to(const char *filename, const FLAC__StreamMetadata *picture, const ch… 39 FLAC__StreamMetadata *picture = 0; in do_shorthand_operation__picture() local 49 ok = import_pic_from(filename, &picture, operation->argument.specification.value, needs_write); in do_shorthand_operation__picture() 51 /* append PICTURE block */ in do_shorthand_operation__picture() 54 if(!FLAC__metadata_iterator_insert_block_after(iterator, picture)) { in do_shorthand_operation__picture() 55 … print_error_with_chain_status(chain, "%s: ERROR: adding new PICTURE block to metadata", filename); in do_shorthand_operation__picture() 56 FLAC__metadata_object_delete(picture); in do_shorthand_operation__picture() 61 /* check global PICTURE constraints (max 1 block each of type=1 and type=2) */ in do_shorthand_operation__picture() 67 if(block->data.picture.type == FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON_STANDARD) { in do_shorthand_operation__picture() [all …]
|
| /external/rust/cros-libva/lib/src/ |
| D | picture.rs | 25 /// A `Picture` will only have valid YUV data after a sequence of operations are performed in a 46 /// Represents a `Picture` that has just been created. 51 /// Represents a `Picture` after `vaBeginPicture` has been called. 56 /// Represents a `Picture` after `vaRenderPicture` has been called. 61 /// Represents a `Picture` after `vaEndPicture` has been called. 66 /// Represents a `Picture` after `vaSyncSurface` has been called on the underlying surface. 71 /// Represents a state where one can reclaim the underlying `Surface` for this `Picture`. This is 78 /// Inner type for [`Picture`], that is, the part that exists in all states. 80 /// Timestamp of the picture. 82 /// A context associated with this picture. [all …]
|
| /external/intel-media-driver/media_softlet/agnostic/common/codec/hal/enc/avc/features/ |
| D | encode_avc_vdenc_const_settings.h | 93 …int8_t *BRC_UPD_GlobalRateQPAdjTabI_U8; //!< I Picture Global Rate QP Adjustment Ta… 94 …int8_t *BRC_UPD_GlobalRateQPAdjTabP_U8; //!< P Picture Global Rate QP Adjustment Ta… 95 …int8_t *BRC_UPD_SlWinGlobalRateQPAdjTabP_U8; //!< P picture Global Rate QP Adjustment Ta… 96 …int8_t *BRC_UPD_GlobalRateQPAdjTabB_U8; //!< B Picture Global Rate QP Adjustment Ta… 97 uint8_t *BRC_UPD_DistThreshldI_U8; //!< I Picture Distortion THreshold. 98 uint8_t *BRC_UPD_DistThreshldP_U8; //!< P Picture Distortion THreshold. 99 uint8_t *BRC_UPD_DistThreshldB_U8; //!< B Picture Distortion THreshold. 100 …int8_t *CBR_UPD_DistQPAdjTabI_U8; //!< I Picture Distortion QP Adjustment Tab… 101 …int8_t *CBR_UPD_DistQPAdjTabP_U8; //!< P Picture Distortion QP Adjustment Tab… 102 …int8_t *CBR_UPD_DistQPAdjTabB_U8; //!< B Picture Distortion QP Adjustment Tab… [all …]
|
| /external/openscreen/cast/standalone_receiver/ |
| D | sdl_video_player.cc | 81 const AVFrame& picture = *frame.decoded_frame; in RenderNextFrame() local 83 // Punt if the |picture| format is not compatible with those supported by SDL. in RenderNextFrame() 84 const uint32_t sdl_format = GetSDLPixelFormat(picture); in RenderNextFrame() 87 error << "SDL does not support AVPixelFormat " << picture.format; in RenderNextFrame() 92 // that of |picture|. If not, release the existing texture. in RenderNextFrame() 99 if (texture_format != sdl_format || texture_width != picture.width || in RenderNextFrame() 100 texture_height != picture.height) { in RenderNextFrame() 106 // that of |picture|. in RenderNextFrame() 110 error << SDL_GetPixelFormatName(sdl_format) << " at " << picture.width in RenderNextFrame() 111 << "×" << picture.height; in RenderNextFrame() [all …]
|
| /external/libva/va/ |
| D | va_enc_mpeg2.h | 63 * \brief Packed Picture Parameter Set (PPS). 95 /** \brief Picture width. 103 /** \brief Picture height. 174 * \brief Picture parameter for MPEG-2 encoding 179 * If packed picture headers mode is used, i.e. if the encoding 190 /** \brief Forward reference picture */ 192 /** \brief Backward reference picture */ 194 /** \brief Reconstructed(decoded) picture */ 205 * \brief Flag to indicate the picture is the last one or not. 207 * This fields holds 0 if the picture to be encoded is not [all …]
|
| /external/skia/tests/ |
| D | PictureShaderTest.cpp | 33 sk_sp<SkPicture> picture = makePicture(); in DEF_TEST() local 34 REPORTER_ASSERT(reporter, picture->unique()); in DEF_TEST() 40 paint.setShader(picture->makeShader(SkTileMode::kRepeat, SkTileMode::kRepeat, in DEF_TEST() 45 REPORTER_ASSERT(reporter, !picture->unique()); in DEF_TEST() 48 // Draw another picture shader to have a chance to purge. in DEF_TEST() 58 REPORTER_ASSERT(reporter, picture->unique()); in DEF_TEST() 62 * Check caching of picture-shaders 65 * - after deleting the picture, the cache entry is purged 68 auto picture = []() { in DEF_TEST() local 73 REPORTER_ASSERT(reporter, picture->unique()); in DEF_TEST() [all …]
|
| /external/mesa3d/src/gallium/auxiliary/driver_trace/ |
| D | tr_video.c | 41 unwrap_refrence_frames(struct pipe_picture_desc **picture) in unwrap_refrence_frames() argument 44 if ((*picture)->entry_point != PIPE_VIDEO_ENTRYPOINT_BITSTREAM) in unwrap_refrence_frames() 46 switch (u_reduce_video_profile((*picture)->profile)) { in unwrap_refrence_frames() 48 …struct pipe_mpeg12_picture_desc *copied = mem_dup(*picture, sizeof(struct pipe_mpeg12_picture_desc… in unwrap_refrence_frames() 51 *picture = (struct pipe_picture_desc*)copied; in unwrap_refrence_frames() 55 …struct pipe_mpeg4_picture_desc *copied = mem_dup(*picture, sizeof(struct pipe_mpeg4_picture_desc)); in unwrap_refrence_frames() 58 *picture = (struct pipe_picture_desc*)copied; in unwrap_refrence_frames() 62 … struct pipe_vc1_picture_desc *copied = mem_dup(*picture, sizeof(struct pipe_vc1_picture_desc)); in unwrap_refrence_frames() 65 *picture = (struct pipe_picture_desc*)copied; in unwrap_refrence_frames() 69 … struct pipe_h264_picture_desc *copied = mem_dup(*picture, sizeof(struct pipe_h264_picture_desc)); in unwrap_refrence_frames() [all …]
|
| /external/webp/src/webp/ |
| D | encode.h | 88 WEBP_HINT_PICTURE, // digital picture, like portrait, inner shot 125 int show_compressed; // if true, export the compressed picture back. 156 // of source picture. These presets are used when calling WebPConfigPreset(). 159 WEBP_PRESET_PICTURE, // digital picture, like portrait, inner shot 239 // data/data_size is the segment of data to write, and 'picture' is for 240 // reference (and so one can make use of picture->custom_ptr). 242 const WebPPicture* picture); 263 const uint8_t* data, size_t data_size, const WebPPicture* picture); 268 typedef int (*WebPProgressHook)(int percent, const WebPPicture* picture); 286 VP8_ENC_ERROR_BAD_DIMENSION, // picture has invalid width/height [all …]
|
| /external/robolectric/robolectric/src/test/java/org/robolectric/shadows/ |
| D | ShadowPictureTest.java | 5 import android.graphics.Picture; 15 Picture picture = new Picture(); in beginRecordingSetsHeightAndWidth() local 16 picture.beginRecording(100, 100); in beginRecordingSetsHeightAndWidth() 17 assertThat(picture.getHeight()).isEqualTo(100); in beginRecordingSetsHeightAndWidth() 18 assertThat(picture.getWidth()).isEqualTo(100); in beginRecordingSetsHeightAndWidth() 23 Picture originalPicture = new Picture(); in copyConstructor() 26 Picture copiedPicture = new Picture(originalPicture); in copyConstructor()
|
| /external/flac/src/test_grabbag/picture/ |
| D | main.c | 1 /* test_picture - Simple tester for picture routines in grabbag 87 obj->data.picture.type, in test_one_picture() 88 obj->data.picture.type < FLAC__STREAM_METADATA_PICTURE_TYPE_UNDEFINED? in test_one_picture() 89 FLAC__StreamMetadata_Picture_TypeString[obj->data.picture.type] : "UNDEFINED", in test_one_picture() 90 obj->data.picture.mime_type, in test_one_picture() 91 obj->data.picture.description, in test_one_picture() 92 obj->data.picture.width, in test_one_picture() 93 obj->data.picture.height, in test_one_picture() 94 obj->data.picture.depth, in test_one_picture() 95 obj->data.picture.colors, in test_one_picture() [all …]
|
| /external/intel-media-driver/media_softlet/agnostic/Xe2_M_plus/Xe2_LPM/codec/hal/enc/avc/features/ |
| D | encode_avc_vdenc_const_settings_xe2_lpm.h | 41 …_BRC_UPD_GlobalRateQPAdjTabI_U8_Xe2_Lpm[64]; //!< I Picture Global Rate QP Ad… 42 …_BRC_UPD_GlobalRateQPAdjTabP_U8_Xe2_Lpm[64]; //!< P Picture Global Rate QP Ad… 43 …_BRC_UPD_SlWinGlobalRateQPAdjTabP_U8_Xe2_Lpm[64]; //!< P picture Global Rate QP Ad… 44 …_BRC_UPD_GlobalRateQPAdjTabB_U8_Xe2_Lpm[64]; //!< B Picture Global Rate QP Ad… 46 …_BRC_UPD_DistThreshldI_U8_Xe2_Lpm[10]; //!< I Picture Distortion THresh… 47 …_BRC_UPD_DistThreshldP_U8_Xe2_Lpm[10]; //!< P Picture Distortion THresh… 48 …_BRC_UPD_DistThreshldB_U8_Xe2_Lpm[10]; //!< P Picture Distortion THresh… 50 …_CBR_UPD_DistQPAdjTabI_U8_Xe2_Lpm[81]; //!< I Picture Distortion QP Adj… 51 …_CBR_UPD_DistQPAdjTabP_U8_Xe2_Lpm[81]; //!< P Picture Distortion QP Adj… 52 …_CBR_UPD_DistQPAdjTabB_U8_Xe2_Lpm[81]; //!< B Picture Distortion QP Adj… [all …]
|
| /external/intel-media-driver/media_softlet/agnostic/Xe_M_plus/Xe_LPM_plus_base/codec/hal/enc/avc/features/ |
| D | encode_avc_vdenc_const_settings_xe_lpm_plus_base.h | 40 …GlobalRateQPAdjTabI_U8_Xe_Lpm_Plus_Base[64]; //!< I Picture Global Rate QP Ad… 41 …GlobalRateQPAdjTabP_U8_Xe_Lpm_Plus_Base[64]; //!< P Picture Global Rate QP Ad… 42 …SlWinGlobalRateQPAdjTabP_U8_Xe_Lpm_Plus_Base[64]; //!< P picture Global Rate QP Ad… 43 …GlobalRateQPAdjTabB_U8_Xe_Lpm_Plus_Base[64]; //!< B Picture Global Rate QP Ad… 45 …DistThreshldI_U8_Xe_Lpm_Plus_Base[10]; //!< I Picture Distortion THresh… 46 …DistThreshldP_U8_Xe_Lpm_Plus_Base[10]; //!< P Picture Distortion THresh… 47 …DistThreshldB_U8_Xe_Lpm_Plus_Base[10]; //!< P Picture Distortion THresh… 49 …DistQPAdjTabI_U8_Xe_Lpm_Plus_Base[81]; //!< I Picture Distortion QP Adj… 50 …DistQPAdjTabP_U8_Xe_Lpm_Plus_Base[81]; //!< P Picture Distortion QP Adj… 51 …DistQPAdjTabB_U8_Xe_Lpm_Plus_Base[81]; //!< B Picture Distortion QP Adj… [all …]
|
| /external/webp/examples/ |
| D | cwebp.c | 312 // Dumps a picture as a PGM file using the IMC4 layout. 313 static int DumpPicture(const WebPPicture* const picture, const char* PGM_name) { in DumpPicture() argument 316 const int uv_width = (picture->width + 1) / 2; in DumpPicture() 317 const int uv_height = (picture->height + 1) / 2; in DumpPicture() 318 const int stride = (picture->width + 1) & ~1; in DumpPicture() 319 const uint8_t* src_y = picture->y; in DumpPicture() 320 const uint8_t* src_u = picture->u; in DumpPicture() 321 const uint8_t* src_v = picture->v; in DumpPicture() 322 const uint8_t* src_a = picture->a; in DumpPicture() 324 WebPPictureHasTransparency(picture) ? picture->height : 0; in DumpPicture() [all …]
|
| /external/python/uritemplates/tests/fixtures/ |
| D | extended-tests.json | 7 "fields" : ["id", "name", "picture"], 32 "/person?fields=id,name,picture&first_name=John&last.name=Doe&token=12345", 33 "/person?fields=id,picture,name&first_name=John&last.name=Doe&token=12345", 34 "/person?fields=picture,name,id&first_name=John&last.name=Doe&token=12345", 35 "/person?fields=picture,id,name&first_name=John&last.name=Doe&token=12345", 36 "/person?fields=name,picture,id&first_name=John&last.name=Doe&token=12345", 37 "/person?fields=name,id,picture&first_name=John&last.name=Doe&token=12345"] 60 "fields" : ["id", "name", "picture"], 72 "/person/albums?fields=id,name,picture&token=12345", 73 "/person/albums?fields=id,picture,name&token=12345", [all …]
|
| /external/intel-media-driver/media_common/agnostic/common/codec/shared/ |
| D | codec_def_decode_hevc.h | 72 /*! \brief Picture-level parameters of a compressed picture for HEVC decoding. 74 …ghts. The last width and height need to be calculated by driver from the picture dimension. Values… 76 …driver should generate and populate these tile dimension values based on picture resolution and nu… 82 …* The decoded picture width in units of luma samples equals (PicWidthInMinCbsY) * (1 << (log2_mi… 87 …* The decoded picture height in units of luma samples equals (PicHeightInMinCbsY) * (1 << (log2_… 100 /*! \brief Indicates that no picture reordering is used in the coded video sequence. 102 …eceding any picture in decoding order and succeeding that picture in output order is equal to 0. W… 118 /*! \brief Uncompressed destination surface of the frame for the current decoded picture. 211 /*! \brief Indicates whether the current picture is an IRAP picture. 213 …qual to 1 when the current picture is an IRAP picture and shall be equal to 0 when the current pic… [all …]
|
| /external/flac/test/metaflac-test-files/ |
| D | case59-expect.meta | 47 type: 6 (PICTURE) 60 type: 6 (PICTURE) 73 type: 6 (PICTURE) 86 type: 6 (PICTURE) 99 type: 6 (PICTURE) 112 type: 6 (PICTURE) 125 type: 6 (PICTURE) 138 type: 6 (PICTURE) 151 type: 6 (PICTURE) 164 type: 6 (PICTURE) [all …]
|