/third_party/ffmpeg/libavformat/ |
H A D | xmv.c | 54 /** A video packet with an XMV file. */ 57 int stream_index; ///< The decoder stream index for this video packet. 59 uint32_t data_size; ///< The size of the remaining video data. 60 uint64_t data_offset; ///< The offset of the video data within the file. 62 uint32_t current_frame; ///< The current frame within this video packet. 63 uint32_t frame_count; ///< The amount of frames within this video packet. 65 int has_extradata; ///< Does the video packet contain extra data? 68 int64_t last_pts; ///< PTS of the last video frame. 69 int64_t pts; ///< PTS of the most current video frame. 114 XMVVideoPacket video; ///< Th member 487 XMVVideoPacket *video = &xmv->video; xmv_fetch_video_packet() local [all...] |
H A D | electronicarts.c | 80 VideoProperties video, alpha; member 317 static void process_video_header_mdec(AVFormatContext *s, VideoProperties *video) in process_video_header_mdec() argument 321 video->width = avio_rl16(pb); in process_video_header_mdec() 322 video->height = avio_rl16(pb); in process_video_header_mdec() 323 video->time_base = (AVRational) { 1, 15 }; in process_video_header_mdec() 324 video->codec = AV_CODEC_ID_MDEC; in process_video_header_mdec() 327 static int process_video_header_vp6(AVFormatContext *s, VideoProperties *video) in process_video_header_vp6() argument 332 video->nb_frames = avio_rl32(pb); in process_video_header_vp6() 334 video->time_base.den = avio_rl32(pb); in process_video_header_vp6() 335 video in process_video_header_vp6() 345 process_video_header_cmv(AVFormatContext *s, VideoProperties *video) process_video_header_cmv() argument 490 init_video_stream(AVFormatContext *s, VideoProperties *video) init_video_stream() argument [all...] |
H A D | c93.c | 62 AVStream *video; in read_header() local 82 video = avformat_new_stream(s, NULL); in read_header() 83 if (!video) in read_header() 86 video->codecpar->codec_type = AVMEDIA_TYPE_VIDEO; in read_header() 87 video->codecpar->codec_id = AV_CODEC_ID_C93; in read_header() 88 video->codecpar->width = 320; in read_header() 89 video->codecpar->height = 192; in read_header() 91 video->sample_aspect_ratio = (AVRational) { 5, 6 }; in read_header() 92 avpriv_set_pts_info(video, 64, 2, 25); in read_header() 93 video in read_header() [all...] |
H A D | segafilmenc.c | 141 av_log(format_context, AV_LOG_ERROR, "Sega FILM allows a maximum of one video stream.\n"); in film_init() 147 "Incompatible video stream format.\n"); in film_init() 160 av_log(format_context, AV_LOG_ERROR, "No video stream present.\n"); in film_init() 188 AVStream *video = NULL; in film_write_header() local 219 video = format_context->streams[film->video_index]; in film_write_header() 221 /* The only two supported codecs; raw video is rare */ in film_write_header() 222 switch (video->codecpar->codec_id) { in film_write_header() 231 bytestream_put_be32(&ptr, video->codecpar->height); in film_write_header() 232 bytestream_put_be32(&ptr, video->codecpar->width); in film_write_header() 264 bytestream_put_be32(&ptr, av_q2d(av_inv_q(video in film_write_header() [all...] |
H A D | matroskadec.c | 271 MatroskaTrackVideo video; member 610 { MATROSKA_ID_TRACKVIDEO, EBML_NEST, 0, 0, offsetof(MatroskaTrack, video), { .n = matroska_track_video } }, 2155 const MatroskaTrackVideoColor *color = track->video.color.elem; in mkv_parse_video_color() 2159 if (!track->video.color.nb_elem) in mkv_parse_video_color() 2280 const MatroskaTrackVideoProjection *mkv_projection = &track->video.projection; in mkv_parse_video_projection() 2293 switch (track->video.projection.type) { in mkv_parse_video_projection() 2297 if (track->video.projection.private.size == 20) { in mkv_parse_video_projection() 2310 } else if (track->video.projection.private.size != 0) { in mkv_parse_video_projection() 2321 if (track->video.projection.private.size < 4) { in mkv_parse_video_projection() 2324 } else if (track->video in mkv_parse_video_projection() [all...] |
/third_party/mesa3d/src/gallium/frontends/omx/tizonia/ |
H A D | h264dinport.c | 71 OMX_VIDEO_PORTDEFINITIONTYPE * p_def = &(p_prc->out_port_def_.format.video); in h264d_inport_SetParameter() 75 if ((p_def->nFrameWidth == i_def->format.video.nFrameWidth) && in h264d_inport_SetParameter() 76 (p_def->nFrameHeight == i_def->format.video.nFrameHeight) && in h264d_inport_SetParameter() 77 (p_def->eCompressionFormat == i_def->format.video.eCompressionFormat)) in h264d_inport_SetParameter() 81 if (i_def->format.video.nStride == 0) in h264d_inport_SetParameter() 82 i_def->format.video.nStride = i_def->format.video.nFrameWidth; in h264d_inport_SetParameter() 83 if (i_def->format.video.nSliceHeight == 0) in h264d_inport_SetParameter() 84 i_def->format.video.nSliceHeight = i_def->format.video in h264d_inport_SetParameter() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | mmaldec.c | 321 if ((ret = ff_set_dimensions(avctx, format_out->es->video.crop.x + format_out->es->video.crop.width, in ffmal_update_format() 322 format_out->es->video.crop.y + format_out->es->video.crop.height)) < 0) in ffmal_update_format() 325 if (format_out->es->video.par.num && format_out->es->video.par.den) { in ffmal_update_format() 326 avctx->sample_aspect_ratio.num = format_out->es->video.par.num; in ffmal_update_format() 327 avctx->sample_aspect_ratio.den = format_out->es->video.par.den; in ffmal_update_format() 329 if (format_out->es->video.frame_rate.num && format_out->es->video in ffmal_update_format() [all...] |
H A D | omx.c | 471 in_port_params.format.video.pNativeRender = NULL; in omx_component_init() 472 in_port_params.format.video.bFlagErrorConcealment = OMX_FALSE; in omx_component_init() 473 in_port_params.format.video.eColorFormat = s->color_format; in omx_component_init() 478 in_port_params.format.video.nStride = s->stride; in omx_component_init() 479 in_port_params.format.video.nSliceHeight = s->plane_size; in omx_component_init() 480 in_port_params.format.video.nFrameWidth = avctx->width; in omx_component_init() 481 in_port_params.format.video.nFrameHeight = avctx->height; in omx_component_init() 483 in_port_params.format.video.xFramerate = (1LL << 16) * avctx->framerate.num / avctx->framerate.den; in omx_component_init() 485 in_port_params.format.video.xFramerate = (1LL << 16) * avctx->time_base.den / avctx->time_base.num; in omx_component_init() 491 s->stride = in_port_params.format.video in omx_component_init() [all...] |
H A D | iff.c | 57 unsigned is_interlaced;///< video is interlaced 58 unsigned is_brush; ///< video is in ANBR format 67 uint8_t *video[2]; member 393 av_freep(&s->video[0]); in decode_end() 394 av_freep(&s->video[1]); in decode_end() 445 s->video[0] = av_calloc(FFALIGN(avctx->width, 2) * avctx->height, s->bpp); in decode_init() 446 s->video[1] = av_calloc(FFALIGN(avctx->width, 2) * avctx->height, s->bpp); in decode_init() 448 if (!s->video[0] || !s->video[1] || !s->pal) in decode_init() 1610 memcpy(s->video[ in decode_frame() 1665 uint8_t *video = s->video[0]; decode_frame() local 1690 uint8_t *video = s->video[0]; decode_frame() local [all...] |
H A D | cdxl.c | 2 * CDXL video decoder 24 * Commodore CDXL video decoder 52 const uint8_t *video; member 91 if (init_get_bits8(&gb, c->video, c->video_size) < 0) in bitplanar2chunky() 107 if (init_get_bits8(&gb, c->video, c->video_size) < 0) in bitline2chunky() 123 bytestream2_init(&gb, c->video, c->video_size); in chunky2chunky() 263 c->video = c->palette + c->palette_size; in cdxl_decode_frame() 341 .p.long_name = NULL_IF_CONFIG_SMALL("Commodore CDXL video"),
|
/third_party/mesa3d/src/gallium/frontends/omx/bellagio/ |
H A D | vid_dec.c | 239 strcpy(port->sPortParam.format.video.cMIMEType,"video/MPEG2"); in vid_dec_Constructor() 243 port->sPortParam.format.video.nFrameWidth = 176; in vid_dec_Constructor() 244 port->sPortParam.format.video.nFrameHeight = 144; in vid_dec_Constructor() 245 port->sPortParam.format.video.eCompressionFormat = OMX_VIDEO_CodingMPEG2; in vid_dec_Constructor() 257 port->sPortParam.format.video.nFrameWidth = 176; in vid_dec_Constructor() 258 port->sPortParam.format.video.nFrameHeight = 144; in vid_dec_Constructor() 259 port->sPortParam.format.video.eColorFormat = OMX_COLOR_FormatYUV420SemiPlanar; in vid_dec_Constructor() 313 unsigned framesize = def->format.video.nFrameWidth * def->format.video in vid_dec_SetParameter() [all...] |
H A D | vid_enc.c | 199 port->sPortParam.format.video.nFrameWidth = 176; in vid_enc_Constructor() 200 port->sPortParam.format.video.nFrameHeight = 144; in vid_enc_Constructor() 201 port->sPortParam.format.video.eColorFormat = OMX_COLOR_FormatYUV420SemiPlanar; in vid_enc_Constructor() 212 strcpy(port->sPortParam.format.video.cMIMEType,"video/H264"); in vid_enc_Constructor() 213 port->sPortParam.format.video.nFrameWidth = 176; in vid_enc_Constructor() 214 port->sPortParam.format.video.nFrameHeight = 144; in vid_enc_Constructor() 215 port->sPortParam.format.video.eCompressionFormat = OMX_VIDEO_CodingAVC; in vid_enc_Constructor() 303 buf_templ.width0 = port->sPortParam.format.video.nFrameWidth; in enc_AllocateBackTexture() 304 buf_templ.height0 = port->sPortParam.format.video in enc_AllocateBackTexture() [all...] |
/test/xts/tools/sample/ServerSampleD/java/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/sample/controller/ |
H A D | VideoController.java | 52 @RequestMapping("/sample/video") 62 * @param video 视频实体类 71 public Result<?> list(OhSampleShortVideo video, in list() argument 75 QueryWrapper<OhSampleShortVideo> queryWrapper = QueryGenerator.initQueryWrapper(video, req.getParameterMap()); in list() 85 * @param video 视频实体类 91 public Result<?> add(@RequestBody OhSampleShortVideo video) { in add() argument 92 videoService.save(video); in add() 99 * @param video 视频实体类 105 public Result<?> edit(@RequestBody OhSampleShortVideo video) { in edit() argument 106 videoService.updateById(video); in edit() [all...] |
/third_party/ffmpeg/tests/fate/ |
H A D | video.mak | 59 FATE_BINK_VIDEO += fate-bink-video-b 60 fate-bink-video-b: CMD = framecrc -i $(TARGET_SAMPLES)/bink/RISE.BIK -frames 30 62 FATE_BINK_VIDEO += fate-bink-video-f 63 fate-bink-video-f: CMD = framecrc -i $(TARGET_SAMPLES)/bink/hol2br.bik 65 FATE_BINK_VIDEO += fate-bink-video-i 66 fate-bink-video-i: CMD = framecrc -i $(TARGET_SAMPLES)/bink/RazOnBull.bik -an 70 FATE_VIDEO-$(call FRAMECRC, BMV, BMV_VIDEO, SCALE_FILTER) += fate-bmv-video 71 fate-bmv-video: CMD = framecrc -i $(TARGET_SAMPLES)/bmv/SURFING-partial.BMV -pix_fmt rgb24 -an -vf scale 121 FATE_VIDEO-$(call FRAMECRC, DSICIN, DSICINVIDEO, SCALE_FILTER) += fate-delphine-cin-video 122 fate-delphine-cin-video [all...] |
H A D | webm-dash-manifest.mak | 4 FATE_WEBM_DASH_MANIFEST += fate-webm-dash-manifest-unaligned-video-streams 5 fate-webm-dash-manifest-unaligned-video-streams: CMD = run $(FFMPEG) -nostdin -f webm_dash_manifest -i $(TARGET_SAMPLES)/vp8/dash_video1.webm -f webm_dash_manifest -i $(TARGET_SAMPLES)/vp8/dash_video3.webm -c copy -map 0 -map 1 -f webm_dash_manifest -adaptation_sets "id=0,streams=0,1" -
|
H A D | real.mak | 56 fate-realmedia-video: $(FATE_REALMEDIA_VIDEO-yes) 57 fate-realmedia: fate-realmedia-audio fate-realmedia-video
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_afir.c | 294 draw_response_float(ctx, s->video); in convert_coeffs() 297 draw_response_double(ctx, s->video); in convert_coeffs() 394 int64_t old_pts = s->video->pts; in activate() 399 s->video->pts = new_pts; in activate() 400 clone = av_frame_clone(s->video); in activate() 525 av_frame_free(&s->video); in uninit() 539 av_frame_free(&s->video); in config_video() 540 s->video = ff_get_video_buffer(outlink, outlink->w, outlink->h); in config_video() 541 if (!s->video) in config_video() 651 { "size", "set video siz [all...] |
H A D | video.c | 34 #include "video.h" 107 if (link->dstpad->get_buffer.video) in ff_get_video_buffer() 108 ret = link->dstpad->get_buffer.video(link, w, h); in ff_get_video_buffer()
|
H A D | vf_format.c | 23 * format and noformat video filters 38 #include "video.h" 153 .get_buffer.video = ff_null_get_video_buffer, 166 .description = NULL_IF_CONFIG_SMALL("Convert the input video to one of the specified pixel formats."), 189 .get_buffer.video = ff_null_get_video_buffer,
|
/third_party/ffmpeg/doc/examples/ |
H A D | hw_decode.c | 5 * HW Acceleration API (video decoding) decode sample 32 * frames from the HW video surfaces. 153 AVStream *video = NULL; in main() local 192 /* find the video stream information */ in main() 195 fprintf(stderr, "Cannot find a video stream in the input file\n"); in main() 217 video = input_ctx->streams[video_stream]; in main() 218 if (avcodec_parameters_to_context(decoder_ctx, video->codecpar) < 0) in main()
|
H A D | vaapi_transcode.c | 2 * Video Acceleration API (video transcoding) transcode sample 66 AVStream *video = NULL; in open_input_file() local 82 fprintf(stderr, "Cannot find a video stream in the input file. " in open_input_file() 91 video = ifmt_ctx->streams[video_stream]; in open_input_file() 92 if ((ret = avcodec_parameters_to_context(decoder_ctx, video->codecpar)) < 0) { in open_input_file() 279 /* read all packets and only transcoding video */ in main()
|
/test/xts/hats/hdf/codec/hdi_idlomx/ |
H A D | codec_function_utils.cpp | 91 param.format.video.nFrameWidth = WIDTH;
in InitBufferHandleParameter() 92 param.format.video.nFrameHeight = HEIGHT;
in InitBufferHandleParameter() 93 param.format.video.nStride = AlignUp(WIDTH);
in InitBufferHandleParameter() 94 param.format.video.nSliceHeight = HEIGHT;
in InitBufferHandleParameter() 95 param.format.video.eColorFormat = OMX_COLOR_FormatYUV420SemiPlanar;
in InitBufferHandleParameter()
|
/third_party/mesa3d/.gitlab-ci/container/debian/ |
H A D | x86_test-vk.sh | 59 xserver-xorg-video-amdgpu \ 60 xserver-xorg-video-ati
|
/third_party/mesa3d/src/gallium/frontends/omx/ |
H A D | vid_dec_h264_common.c | 53 templat.width = port->sPortParam.format.video.nFrameWidth; in vid_dec_h264_BeginFrame() 54 templat.height = port->sPortParam.format.video.nFrameHeight; in vid_dec_h264_BeginFrame() 56 templat.width = priv->out_port_def_.format.video.nFrameWidth; in vid_dec_h264_BeginFrame() 57 templat.height = priv->out_port_def_.format.video.nFrameHeight; in vid_dec_h264_BeginFrame() 931 p_def = &(priv->out_port_def_.format.video); in update_port_parameters() 1100 templat.width = port->sPortParam.format.video.nFrameWidth; in vid_dec_FrameDecoded_common() 1101 templat.height = port->sPortParam.format.video.nFrameHeight; in vid_dec_FrameDecoded_common() 1103 templat.width = port->portdef_.format.video.nFrameWidth; in vid_dec_FrameDecoded_common() 1104 templat.height = port->portdef_.format.video.nFrameHeight; in vid_dec_FrameDecoded_common()
|
H A D | vid_dec_common.c | 80 OMX_VIDEO_PORTDEFINITIONTYPE *def = &out_port->portdef_.format.video; in vid_dec_FillOutput() 83 OMX_VIDEO_PORTDEFINITIONTYPE *def = &port->sPortParam.format.video; in vid_dec_FillOutput()
|