/external/mesa3d/src/gallium/state_trackers/vdpau/ |
D | decode.c | 226 vlVdpDecoderRenderMpeg12(struct pipe_mpeg12_picture_desc *picture, in vlVdpDecoderRenderMpeg12() argument 233 r = vlVdpGetReferenceFrame(picture_info->forward_reference, &picture->ref[0]); in vlVdpDecoderRenderMpeg12() 237 r = vlVdpGetReferenceFrame(picture_info->backward_reference, &picture->ref[1]); in vlVdpDecoderRenderMpeg12() 241 picture->picture_coding_type = picture_info->picture_coding_type; in vlVdpDecoderRenderMpeg12() 242 picture->picture_structure = picture_info->picture_structure; in vlVdpDecoderRenderMpeg12() 243 picture->frame_pred_frame_dct = picture_info->frame_pred_frame_dct; in vlVdpDecoderRenderMpeg12() 244 picture->q_scale_type = picture_info->q_scale_type; in vlVdpDecoderRenderMpeg12() 245 picture->alternate_scan = picture_info->alternate_scan; in vlVdpDecoderRenderMpeg12() 246 picture->intra_vlc_format = picture_info->intra_vlc_format; in vlVdpDecoderRenderMpeg12() 247 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 static void WebPPictureResetBufferARGB(WebPPicture* const picture) { in WebPPictureResetBufferARGB() argument 49 picture->memory_argb_ = NULL; in WebPPictureResetBufferARGB() 50 picture->argb = NULL; in WebPPictureResetBufferARGB() [all …]
|
D | picture_csp_enc.c | 58 int WebPPictureHasTransparency(const WebPPicture* picture) { in WebPPictureHasTransparency() argument 59 if (picture == NULL) return 0; in WebPPictureHasTransparency() 60 if (!picture->use_argb) { in WebPPictureHasTransparency() 61 return CheckNonOpaque(picture->a, picture->width, picture->height, in WebPPictureHasTransparency() 62 1, picture->a_stride); in WebPPictureHasTransparency() 65 return CheckNonOpaque((const uint8_t*)picture->argb + alpha_offset, in WebPPictureHasTransparency() 66 picture->width, picture->height, in WebPPictureHasTransparency() 67 4, picture->argb_stride * sizeof(*picture->argb)); in WebPPictureHasTransparency() 397 WebPPicture* const picture) { in ConvertWRGBToYUV() argument 399 uint8_t* dst_y = picture->y; in ConvertWRGBToYUV() [all …]
|
/external/mesa3d/src/gallium/state_trackers/omx_bellagio/ |
D | vid_dec_mpeg12.c | 82 priv->picture.base.profile = PIPE_VIDEO_PROFILE_MPEG2_MAIN; in vid_dec_mpeg12_Init() 83 priv->picture.mpeg12.intra_matrix = default_intra_matrix; in vid_dec_mpeg12_Init() 84 priv->picture.mpeg12.non_intra_matrix = default_non_intra_matrix; in vid_dec_mpeg12_Init() 93 if (priv->picture.mpeg12.picture_coding_type != PIPE_MPEG12_PICTURE_CODING_TYPE_B) { in BeginFrame() 94 priv->picture.mpeg12.ref[0] = priv->picture.mpeg12.ref[1]; in BeginFrame() 95 priv->picture.mpeg12.ref[1] = NULL; in BeginFrame() 98 if (priv->target == priv->picture.mpeg12.ref[0]) { in BeginFrame() 106 priv->codec->begin_frame(priv->codec, priv->target, &priv->picture.base); in BeginFrame() 114 priv->codec->end_frame(priv->codec, priv->target, &priv->picture.base); in vid_dec_mpeg12_EndFrame() 117 if (priv->picture.mpeg12.picture_coding_type != PIPE_MPEG12_PICTURE_CODING_TYPE_B) { in vid_dec_mpeg12_EndFrame() [all …]
|
D | vid_dec_h264.c | 90 priv->picture.base.profile = PIPE_VIDEO_PROFILE_MPEG4_AVC_HIGH; in vid_dec_h264_Init() 97 priv->picture.h264.field_order_cnt[0] = priv->picture.h264.field_order_cnt[1] = INT_MAX; in vid_dec_h264_Init() 116 templat.max_references = priv->picture.h264.num_ref_frames; in vid_dec_h264_BeginFrame() 120 templat.level = priv->picture.h264.pps->sps->level_idc; in vid_dec_h264_BeginFrame() 131 priv->picture.h264.num_ref_frames = priv->picture.h264.pps->sps->max_num_ref_frames; in vid_dec_h264_BeginFrame() 133 priv->picture.h264.slice_count = 0; in vid_dec_h264_BeginFrame() 134 priv->codec->begin_frame(priv->codec, priv->target, &priv->picture.base); in vid_dec_h264_BeginFrame() 178 priv->codec->end_frame(priv->codec, priv->target, &priv->picture.base); in vid_dec_h264_EndFrame() 182 priv->picture.h264.frame_num_list[0] = priv->picture.h264.frame_num; in vid_dec_h264_EndFrame() 183 priv->picture.h264.field_order_cnt_list[0][0] = priv->picture.h264.frame_num; in vid_dec_h264_EndFrame() [all …]
|
/external/skia/docs/ |
D | SkPicture_Reference.bmh | 1 #Topic Picture 11 Picture records drawing commands made to Canvas. The command stream may be 14 Picture is an abstract class. Picture may be generated by Picture_Recorder 15 or Drawable, or from Picture previously saved to Data or Stream. 17 Picture may contain any Canvas drawing command, as well as one or more 18 Canvas_Matrix or Canvas_Clip. Picture has a cull Rect, which is used as 19 a bounding box hint. To limit Picture bounds, use Canvas_Clip when 20 recording or drawing Picture. 25 #Line # utility to stop picture playback ## 105 sk_sp<SkPicture> picture = recorder.finishRecordingAsPicture(); [all …]
|
/external/skqp/docs/ |
D | SkPicture_Reference.bmh | 1 #Topic Picture 11 Picture records drawing commands made to Canvas. The command stream may be 14 Picture is an abstract class. Picture may be generated by Picture_Recorder 15 or Drawable, or from Picture previously saved to Data or Stream. 17 Picture may contain any Canvas drawing command, as well as one or more 18 Canvas_Matrix or Canvas_Clip. Picture has a cull Rect, which is used as 19 a bounding box hint. To limit Picture bounds, use Canvas_Clip when 20 recording or drawing Picture. 25 #Line # utility to stop picture playback ## 105 sk_sp<SkPicture> picture = recorder.finishRecordingAsPicture(); [all …]
|
/external/webp/src/webp/ |
D | encode.h | 87 WEBP_HINT_PICTURE, // digital picture, like portrait, inner shot 124 int show_compressed; // if true, export the compressed picture back. 154 // of source picture. These presets are used when calling WebPConfigPreset(). 157 WEBP_PRESET_PICTURE, // digital picture, like portrait, inner shot 233 // data/data_size is the segment of data to write, and 'picture' is for 234 // reference (and so one can make use of picture->custom_ptr). 236 const WebPPicture* picture); 257 const WebPPicture* picture); 262 typedef int (*WebPProgressHook)(int percent, const WebPPicture* picture); 280 VP8_ENC_ERROR_BAD_DIMENSION, // picture has invalid width/height [all …]
|
/external/webp/include/webp/ |
D | encode.h | 87 WEBP_HINT_PICTURE, // digital picture, like portrait, inner shot 124 int show_compressed; // if true, export the compressed picture back. 154 // of source picture. These presets are used when calling WebPConfigPreset(). 157 WEBP_PRESET_PICTURE, // digital picture, like portrait, inner shot 233 // data/data_size is the segment of data to write, and 'picture' is for 234 // reference (and so one can make use of picture->custom_ptr). 236 const WebPPicture* picture); 257 const WebPPicture* picture); 262 typedef int (*WebPProgressHook)(int percent, const WebPPicture* picture); 280 VP8_ENC_ERROR_BAD_DIMENSION, // picture has invalid width/height [all …]
|
/external/robolectric-shadows/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/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/v4l2_codec2/vda/ |
D | picture.h | 19 // A picture buffer that has size and pixel format information. 45 // A decoded picture frame. 46 class Picture { 48 Picture(int32_t picture_buffer_id, 52 Picture(const Picture&); 53 ~Picture(); 55 // Returns the id of the picture buffer where this picture is contained. 65 // Returns the visible rectangle of the picture. Its size may be smaller 67 // Picture contained in the PictureBuffer.
|
D | h264_decoder.h | 40 // When the picture is no longer needed by decoder, it will just drop 51 // contains information about the picture for the current frame. 138 // Process current slice header to discover if we need to start a new picture, 141 // Process current slice as a slice of the current picture. 144 // Return true if we need to start a new picture. 147 // Initialize the current picture according to data in |slice_hdr|. 150 // Initialize |pic| as a "non-existing" picture (see spec) with |frame_num|, 154 // Calculate picture order counts for |pic| on initialization 159 // a picture with |frame_num|. 164 // Prepare reference picture lists for the current frame. [all …]
|
D | h264_dpb.h | 5 // This file contains an implementation of an H.264 Decoded Picture Buffer 25 // A picture (a frame or a field) in the H.264 spec sense. 63 bool idr; // IDR picture? 65 bool ref; // reference picture? 66 bool long_term; // long term reference picture? 69 // picture has finished decoding? 79 // memory management after finishing this picture. 87 // The visible size of picture. This could be either parsed from SPS, or set 99 // DPB - Decoded Picture Buffer. 114 // Remove a picture by its pic_order_cnt and free it. [all …]
|
D | picture.cc | 6 #include "picture.h" 24 Picture::Picture(int32_t picture_buffer_id, in Picture() function in media::Picture 33 Picture::Picture(const Picture& other) = default; 35 Picture::~Picture() = default;
|
/external/libmpeg2/decoder/ |
D | impeg2d_globals.c | 46 /* frame prediction in P frame picture */ 49 /* field prediction in P frame picture */ 52 /* frame prediction in B frame picture */ 55 /* field prediction in B frame picture */ 58 /* dual prime prediction in P frame picture */ 62 /* field prediction in P field picture */ 64 /* 16x8 prediction in P field picture */ 66 /* field prediction in B field picture */ 68 /* 16x8 prediction in B field picture */ 70 /* dual prime prediction in P field picture */ [all …]
|
/external/skia/src/effects/imagefilters/ |
D | SkPictureImageFilter.cpp | 21 sk_sp<SkImageFilter> SkPictureImageFilter::Make(sk_sp<SkPicture> picture) { in Make() argument 22 return sk_sp<SkImageFilter>(new SkPictureImageFilter(std::move(picture))); in Make() 25 sk_sp<SkImageFilter> SkPictureImageFilter::Make(sk_sp<SkPicture> picture, in Make() argument 27 return sk_sp<SkImageFilter>(new SkPictureImageFilter(std::move(picture), cropRect, nullptr)); in Make() 30 SkPictureImageFilter::SkPictureImageFilter(sk_sp<SkPicture> picture) in SkPictureImageFilter() argument 32 , fPicture(std::move(picture)) in SkPictureImageFilter() 36 SkPictureImageFilter::SkPictureImageFilter(sk_sp<SkPicture> picture, const SkRect& cropRect, in SkPictureImageFilter() argument 39 , fPicture(std::move(picture)) in SkPictureImageFilter() 57 sk_sp<SkPicture> picture; in CreateProc() local 61 picture = SkPicturePriv::MakeFromBuffer(buffer); in CreateProc() [all …]
|
/external/skqp/src/effects/imagefilters/ |
D | SkPictureImageFilter.cpp | 21 sk_sp<SkImageFilter> SkPictureImageFilter::Make(sk_sp<SkPicture> picture) { in Make() argument 22 return sk_sp<SkImageFilter>(new SkPictureImageFilter(std::move(picture))); in Make() 25 sk_sp<SkImageFilter> SkPictureImageFilter::Make(sk_sp<SkPicture> picture, in Make() argument 27 return sk_sp<SkImageFilter>(new SkPictureImageFilter(std::move(picture), cropRect, nullptr)); in Make() 30 SkPictureImageFilter::SkPictureImageFilter(sk_sp<SkPicture> picture) in SkPictureImageFilter() argument 32 , fPicture(std::move(picture)) in SkPictureImageFilter() 36 SkPictureImageFilter::SkPictureImageFilter(sk_sp<SkPicture> picture, const SkRect& cropRect, in SkPictureImageFilter() argument 39 , fPicture(std::move(picture)) in SkPictureImageFilter() 57 sk_sp<SkPicture> picture; in CreateProc() local 61 picture = SkPicturePriv::MakeFromBuffer(buffer); in CreateProc() [all …]
|
/external/skia/tests/ |
D | PictureTest.cpp | 60 sk_sp<SkPicture> picture(recorder.finishRecordingAsPicture()); in test_deleting_empty_picture() local 65 // Ensure that serializing an empty picture does not assert. Likewise only runs in debug mode. 69 sk_sp<SkPicture> picture(recorder.finishRecordingAsPicture()); in test_serializing_empty_picture() local 71 picture->serialize(&stream); in test_serializing_empty_picture() 149 void check_save_state(skiatest::Reporter* reporter, SkPicture* picture, in check_save_state() argument 152 SaveCountingCanvas canvas(SkScalarCeilToInt(picture->cullRect().width()), in check_save_state() 153 SkScalarCeilToInt(picture->cullRect().height())); in check_save_state() 155 picture->playback(&canvas); in check_save_state() 191 // This tests that replaying a potentially unbalanced picture into a canvas 193 static void check_balance(skiatest::Reporter* reporter, SkPicture* picture) { in check_balance() argument [all …]
|
D | PictureShaderTest.cpp | 16 // Test that attempting to create a picture shader with a nullptr picture or 17 // empty picture returns a shader that draws nothing. 52 sk_sp<SkPicture> picture = makePicture(); in DEF_TEST() local 53 REPORTER_ASSERT(reporter, picture->unique()); in DEF_TEST() 59 paint.setShader(SkPictureShader::Make(picture, in DEF_TEST() 65 REPORTER_ASSERT(reporter, !picture->unique()); in DEF_TEST() 68 // Draw another picture shader to have a chance to purge. in DEF_TEST() 79 REPORTER_ASSERT(reporter, picture->unique()); in DEF_TEST()
|
/external/skqp/tests/ |
D | PictureTest.cpp | 60 sk_sp<SkPicture> picture(recorder.finishRecordingAsPicture()); in test_deleting_empty_picture() local 65 // Ensure that serializing an empty picture does not assert. Likewise only runs in debug mode. 69 sk_sp<SkPicture> picture(recorder.finishRecordingAsPicture()); in test_serializing_empty_picture() local 71 picture->serialize(&stream); in test_serializing_empty_picture() 149 void check_save_state(skiatest::Reporter* reporter, SkPicture* picture, in check_save_state() argument 152 SaveCountingCanvas canvas(SkScalarCeilToInt(picture->cullRect().width()), in check_save_state() 153 SkScalarCeilToInt(picture->cullRect().height())); in check_save_state() 155 picture->playback(&canvas); in check_save_state() 191 // This tests that replaying a potentially unbalanced picture into a canvas 193 static void check_balance(skiatest::Reporter* reporter, SkPicture* picture) { in check_balance() argument [all …]
|
D | PictureShaderTest.cpp | 16 // Test that attempting to create a picture shader with a nullptr picture or 17 // empty picture returns a shader that draws nothing. 52 sk_sp<SkPicture> picture = makePicture(); in DEF_TEST() local 53 REPORTER_ASSERT(reporter, picture->unique()); in DEF_TEST() 59 paint.setShader(SkPictureShader::Make(picture, in DEF_TEST() 65 REPORTER_ASSERT(reporter, !picture->unique()); in DEF_TEST() 68 // Draw another picture shader to have a chance to purge. in DEF_TEST() 79 REPORTER_ASSERT(reporter, picture->unique()); in DEF_TEST()
|
/external/skia/include/effects/ |
D | SkPictureImageFilter.h | 18 * Refs the passed-in picture. 20 static sk_sp<SkImageFilter> Make(sk_sp<SkPicture> picture); 23 * Refs the passed-in picture. cropRect can be used to crop or expand the destination rect when 24 * the picture is drawn. (No scaling is implied by the dest rect; only the CTM is applied.) 26 static sk_sp<SkImageFilter> Make(sk_sp<SkPicture> picture, const SkRect& cropRect); 34 * @param SkReadBuffer Serialized picture data. 44 explicit SkPictureImageFilter(sk_sp<SkPicture> picture); 45 SkPictureImageFilter(sk_sp<SkPicture> picture, const SkRect& cropRect, sk_sp<SkColorSpace>);
|
/external/skqp/include/effects/ |
D | SkPictureImageFilter.h | 18 * Refs the passed-in picture. 20 static sk_sp<SkImageFilter> Make(sk_sp<SkPicture> picture); 23 * Refs the passed-in picture. cropRect can be used to crop or expand the destination rect when 24 * the picture is drawn. (No scaling is implied by the dest rect; only the CTM is applied.) 26 static sk_sp<SkImageFilter> Make(sk_sp<SkPicture> picture, const SkRect& cropRect); 34 * @param SkReadBuffer Serialized picture data. 44 explicit SkPictureImageFilter(sk_sp<SkPicture> picture); 45 SkPictureImageFilter(sk_sp<SkPicture> picture, const SkRect& cropRect, sk_sp<SkColorSpace>);
|
/external/python/google-api-python-client/docs/dyn/ |
D | drive_v2.comments.html | 128 "picture": { # The user's profile picture. 129 "url": "A String", # A URL that points to a profile picture of this user. 142 "picture": { # The user's profile picture. 143 "url": "A String", # A URL that points to a profile picture of this user. 193 "picture": { # The user's profile picture. 194 "url": "A String", # A URL that points to a profile picture of this user. 207 "picture": { # The user's profile picture. 208 "url": "A String", # A URL that points to a profile picture of this user. 252 "picture": { # The user's profile picture. 253 "url": "A String", # A URL that points to a profile picture of this user. [all …]
|