mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 22:40:30 +00:00
Send same RTP timestamps for audio/video frames captured at the same time. RTP specification allows this (although doesn't require - according to the spec, the RTP timestamps should colaesce with RTCP NTP correspondence). We slightly modify that in a way that we use for both audio and video 90 kHz clock resolution, so if the start point is the same (random), the RTP timestamps will be exactly the same for related data. Implemented for vidcap DeckLink and testcard.
89 lines
3.2 KiB
C
89 lines
3.2 KiB
C
/**
|
|
* @file capture_filter.h
|
|
* @author Martin Pulec <martin.pulec@cesnet.cz>
|
|
*/
|
|
/*
|
|
* Copyright (c) 2013-2023 CESNET, z. s. p. o.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, is permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* 3. Neither the name of CESNET nor the names of its contributors may be
|
|
* used to endorse or promote products derived from this software without
|
|
* specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING,
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
* EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifndef CAPTURE_FILTER_H_
|
|
#define CAPTURE_FILTER_H_
|
|
|
|
#define CAPTURE_FILTER_ABI_VERSION 3
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct module;
|
|
|
|
struct capture_filter_info {
|
|
/// @brief Initializes capture filter
|
|
/// @param parent parent module
|
|
/// @param cfg configuration string from cmdline, not-NULL
|
|
/// @param[out] state output state
|
|
/// @retval 0 if initialized successfully
|
|
/// @retval <0 if error
|
|
/// @retval >0 no error but state was not returned, eg. showing help
|
|
int (*init)(struct module *parent, const char *cfg, void **state);
|
|
void (*done)(void *state);
|
|
/// @brief Performs filtering
|
|
/// @param f input frame
|
|
/// @note
|
|
/// Frame management note
|
|
/// When input frame is no longer used (eg. returned new output frame),
|
|
/// VIDEO_FRAME_DISPOSE(f) has to be called. Also, if you create
|
|
/// new output frame, you may use its .dispose and .dispose_udata
|
|
/// member to manage video_frame lifetime.
|
|
/// This behavior may change towards use of shared_ptr<video_frame>
|
|
/// in future.
|
|
struct video_frame *(*filter)(void *state, struct video_frame *f);
|
|
};
|
|
|
|
struct capture_filter;
|
|
struct module;
|
|
struct video_frame;
|
|
|
|
/**
|
|
* @see display_init
|
|
*/
|
|
int capture_filter_init(struct module *parent, const char *cfg, struct capture_filter **state);
|
|
void capture_filter_destroy(struct capture_filter *state);
|
|
struct video_frame *capture_filter(struct capture_filter *state, struct video_frame *frame);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* CAPTURE_FILTER_H_ */
|
|
|