/third_party/skia/src/codec/ |
H A D | SkBmpCodec.cpp | 8 #include "src/codec/SkBmpCodec.h" 14 #include "src/codec/SkBmpMaskCodec.h" 15 #include "src/codec/SkBmpRLECodec.h" 16 #include "src/codec/SkBmpStandardCodec.h" 17 #include "src/codec/SkCodecPriv.h" 486 // Set the image info and create a codec. in ReadHeader() 598 std::unique_ptr<SkCodec> codec; in MakeFromStream() local 599 *result = ReadHeader(stream.get(), inIco, &codec); in MakeFromStream() 600 if (codec) { in MakeFromStream() 601 // codec ha in MakeFromStream() [all...] |
/third_party/skia/tests/ |
H A D | ColorSpaceTest.cpp | 8 #include "include/codec/SkCodec.h" 56 std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(std::move(stream))); in test_path() 57 REPORTER_ASSERT(r, nullptr != codec); in test_path() 58 if (!codec) { in test_path() 62 auto colorSpace = codec->getInfo().refColorSpace(); in test_path()
|
/third_party/skia/tools/ |
H A D | DDLPromiseImageHelper.cpp | 15 #include "src/codec/SkCodecImageGenerator.h" 400 auto codec = SkCodecImageGenerator::MakeFromEncodedCodec(ib->refEncodedData()); in addImage() local 402 if (codec && codec->queryYUVAInfo(fSupportedYUVADataTypes, &yuvaInfo)) { in addImage() 404 if (!codec->getYUVAPlanes(yuvaPixmaps)) { in addImage()
|
/third_party/skia/tools/gpu/ |
H A D | YUVUtils.cpp | 17 #include "src/codec/SkCodecImageGenerator.h" 223 auto codec = SkCodecImageGenerator::MakeFromEncodedCodec(data); 224 if (!codec) { 229 if (!codec->queryYUVAInfo(SkYUVAPixmapInfo::SupportedDataTypes::All(), &yuvaPixmapInfo)) { 237 if (!codec->getYUVAPlanes(fPixmaps)) {
|
/third_party/ffmpeg/libavformat/ |
H A D | demux.c | 71 const AVCodec *codec; in find_probe_decoder() local 80 codec = ff_find_decoder(s, st, codec_id); in find_probe_decoder() 81 if (!codec) in find_probe_decoder() 84 if (codec->capabilities & AV_CODEC_CAP_AVOID_PROBING) { in find_probe_decoder() 88 if (probe_codec->id == codec->id && in find_probe_decoder() 96 return codec; in find_probe_decoder() 195 /* close parser, because it depends on the codec */ in update_stream_avctx() 213 /* update internal codec context, for the parser */ in update_stream_avctx() 689 /* If this codec can be interlaced or progressive then we need in compute_frame_duration() 987 /* XXX: need has_b_frame, but cannot get it if the codec i in compute_pkt_fields() 2007 const AVCodec *codec; try_decode_frame() local 2472 const AVCodec *codec; avformat_find_stream_info() local 2778 const AVCodec *codec = find_probe_decoder(ic, st, st->codecpar->codec_id); avformat_find_stream_info() local [all...] |
H A D | spdif.h | 63 int ff_spdif_probe(const uint8_t *p_buf, int buf_size, enum AVCodecID *codec);
|
H A D | aaxdec.c | 120 char *codec; in aax_read_header() local 276 codec = a->string_table + a->name_offset; in aax_read_header() 277 if (!strcmp(codec, "AAX")) { in aax_read_header() 295 /*} else if (!strcmp(codec, "HCA") ){ in aax_read_header()
|
/third_party/skia/dm/ |
H A D | DM.cpp | 11 #include "include/codec/SkCodec.h" 126 "Runs of a subset of the codec tests, " 492 folder.append("codec"); in push_codec_src() 680 std::unique_ptr<SkCodec> codec = SkCodec::MakeFromData(encoded); in push_codec_srcs() local 681 if (nullptr == codec) { in push_codec_srcs() 682 info("Couldn't create codec for %s.", path.c_str()); in push_codec_srcs() 692 switch (codec->getEncodedFormat()) { in push_codec_srcs() 713 switch (codec->getInfo().colorType()) { in push_codec_srcs() 723 if (codec->getInfo().alphaType() != kOpaque_SkAlphaType) { in push_codec_srcs() 754 std::vector<SkCodec::FrameInfo> frameInfos = codec in push_codec_srcs() [all...] |
/third_party/ffmpeg/tests/fate/ |
H A D | mpegps.mak | 4 fate-mpegps-remuxed-pcm-demux: CMD = stream_remux "mpeg" "$(TARGET_SAMPLES)/mpegps/pcm_aud.mpg" "mpeg" "-map 0:a:0" "-codec copy"
|
H A D | cbs.mak | 1 # Read/write tests: this uses the codec metadata filter - with no 10 # (codec, test_name, sample_file, output_format)
|
/third_party/skia/include/utils/ |
H A D | SkAnimCodecPlayer.h | 11 #include "include/codec/SkCodec.h" 17 SkAnimCodecPlayer(std::unique_ptr<SkCodec> codec);
|
/third_party/skia/gm/ |
H A D | makecolorspace.cpp | 9 #include "include/codec/SkCodec.h" 29 std::unique_ptr<SkCodec> codec = SkCodec::MakeFromData(resourceData); in make_raster_image() local 31 return std::get<0>(codec->getImage()); in make_raster_image() 100 // Change the color type/space of the image in a couple ways. In both cases, codec in DEF_SIMPLE_GM_BG() 105 // because of the codec issues mentioned above. in DEF_SIMPLE_GM_BG()
|
/third_party/ffmpeg/libavutil/ |
H A D | film_grain_params.h | 28 * The union is valid when interpreted as AVFilmGrainAOMParams (codec.aom) 33 * The union is valid when interpreted as AVFilmGrainH274Params (codec.h274) 218 * Specifies the codec for which this structure is valid. 223 * Seed to use for the synthesis process, if the codec allows for it. 232 * If a codec's film grain structure differs slightly over another 233 * codec's, fields within may change meaning depending on the type. 238 } codec; member
|
/third_party/skia/client_utils/android/ |
H A D | BitmapRegionDecoder.h | 12 #include "include/codec/SkAndroidCodec.h" 43 BitmapRegionDecoder(std::unique_ptr<SkAndroidCodec> codec);
|
/third_party/libsnd/src/ |
H A D | ogg.c | 88 * streaming rather than storage as a priority, and can handle multiple codec 158 ** page and check that it contains a codec we support as supporting in ogg_read_first_page() 790 odata->codec = ogg_page_classify (psf, &odata->opage) ; in ogg_stream_classify() 792 switch (odata->codec) in ogg_stream_classify() 827 int len, codec ; member 850 return codec_lookup [k].codec ; in ogg_page_classify()
|
H A D | ogg.h | 52 int codec ; member
|
/third_party/mesa3d/src/gallium/drivers/d3d12/ |
H A D | d3d12_video_screen.cpp | 209 d3d12_video_encode_supported_references_per_frame_structures(const D3D12_VIDEO_ENCODER_CODEC &codec, in d3d12_video_encode_supported_references_per_frame_structures() argument 219 capPictureControlData.Codec = codec; in d3d12_video_encode_supported_references_per_frame_structures() 249 d3d12_video_encode_supported_slice_structures(const D3D12_VIDEO_ENCODER_CODEC &codec, in d3d12_video_encode_supported_slice_structures() argument 258 capDataSubregionLayout.Codec = codec; in d3d12_video_encode_supported_slice_structures()
|
/third_party/ffmpeg/libavcodec/ |
H A D | cuviddec.c | 260 && ctx->codec_type == format->codec) in cuvid_handle_video_sequence() 288 cuinfo.CodecType = ctx->codec_type = format->codec; in cuvid_handle_video_sequence() 727 av_log(avctx, AV_LOG_VERBOSE, "CUVID capabilities for %s:\n", avctx->codec->name); in cuvid_test_capabilities() 753 av_log(avctx, AV_LOG_ERROR, "Codec %s is not supported.\n", avctx->codec->name); in cuvid_test_capabilities() 893 switch (avctx->codec->id) { in cuvid_decode_init() 945 av_log(avctx, AV_LOG_ERROR, "Invalid CUVID codec!\n"); in cuvid_decode_init() 949 if (ffcodec(avctx->codec)->bsfs) { in cuvid_decode_init() 961 if (avctx->codec->id == AV_CODEC_ID_AV1 && in cuvid_decode_init()
|
H A D | mediacodecdec_common.h | 45 FFAMediaCodec *codec; member
|
H A D | tak.h | 129 enum TAKCodecType codec; member
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
H A D | nv84_video.c | 749 firmware_present(struct pipe_screen *pscreen, enum pipe_video_format codec) in firmware_present() argument 765 if (codec == PIPE_VIDEO_FORMAT_MPEG4_AVC) { in firmware_present() 806 enum pipe_video_format codec; in nv84_screen_get_video_param() local 810 codec = u_reduce_video_profile(profile); in nv84_screen_get_video_param() 811 return (codec == PIPE_VIDEO_FORMAT_MPEG4_AVC || in nv84_screen_get_video_param() 812 codec == PIPE_VIDEO_FORMAT_MPEG12) && in nv84_screen_get_video_param() 813 firmware_present(pscreen, codec); in nv84_screen_get_video_param()
|
/third_party/ffmpeg/fftools/ |
H A D | cmdutils.c | 542 av_log(NULL, AV_LOG_VERBOSE, "Routing option %s to both codec and muxer layer\n", opt); in opt_default() 895 AVFormatContext *s, AVStream *st, const AVCodec *codec) in filter_codec_opts() 904 if (!codec) in filter_codec_opts() 905 codec = s->oformat ? avcodec_find_encoder(codec_id) in filter_codec_opts() 936 !codec || in filter_codec_opts() 937 ((priv_class = codec->priv_class) && in filter_codec_opts() 894 filter_codec_opts(AVDictionary *opts, enum AVCodecID codec_id, AVFormatContext *s, AVStream *st, const AVCodec *codec) filter_codec_opts() argument
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/video/ |
H A D | vktVideoTestUtils.cpp | 194 default: TCU_THROW(InternalError, "Unkown codec operation"); in getVideoExtensionProperties() 560 const char* getVideoCodecString(VkVideoCodecOperationFlagBitsKHR codec) in getVideoCodecString() argument 572 if (codec == i.eCodec) in getVideoCodecString() 573 return aCodecName[codec].name; in getVideoCodecString() 731 const char* codecToName(VkVideoCodecOperationFlagBitsKHR codec) in codecToName() argument 733 switch ((int32_t)codec) { in codecToName() 743 tcu::die("Unknown video codec"); in codecToName() 769 DE_ASSERT(false && "Unsupported codec"); in getVideoCapabilities() 816 DE_ASSERT(false && "Unsupported codec"); in getVideoCapabilities() 847 DE_ASSERT(false && "Unsupported codec"); in getVideoDecodeCapabilities() [all...] |
/third_party/alsa-utils/bat/tests/ |
H A D | alsabat_main.sh | 47 if [[ $file == codec* ]]; then
|
/third_party/pulseaudio/src/modules/raop/ |
H A D | raop-client.h | 60 pa_raop_encryption_t encryption, pa_raop_codec_t codec, bool autoreconnect);
|