35 #define OFFSET(x) offsetof(TInterlaceContext, x)
36 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
37 #define TINTERLACE_FLAG_VLPF 01
38 #define TINTERLACE_FLAG_EXACT_TB 2
61 #define FULL_SCALE_YUVJ_FORMATS \
62 AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ440P
95 for (i = 0; i <
width; i++) {
99 dstp[i] = (1 + srcp[i] + srcp[i] + srcp_above[i] + srcp_below[i]) >> 2;
121 outlink->
w = inlink->
w;
123 inlink->
h*2 : inlink->
h;
129 uint8_t black[4] = { 16, 128, 128, 16 };
132 black[0] = black[3] = 0;
134 outlink->
w, outlink->
h, outlink->
format, 16);
139 for (i = 0; i < 4 && tinterlace->
black_data[i]; i++) {
158 outlink->frame_rate = inlink->frame_rate;
159 outlink->time_base = inlink->time_base;
160 }
else if (tinterlace->mode !=
MODE_PAD) {
166 if (!
av_cmp_q(standard_tbs[i], outlink->time_base))
171 outlink->time_base = tinterlace->preout_time_base;
181 inlink->h, outlink->h);
186 #define FIELD_UPPER 0
187 #define FIELD_LOWER 1
188 #define FIELD_UPPER_AND_LOWER 2
201 uint8_t *dst[4],
int dst_linesize[4],
214 int lines = plane == 1 || plane == 2 ?
AV_CEIL_RSHIFT(src_h, vsub) : src_h;
215 int cols = plane == 1 || plane == 2 ?
AV_CEIL_RSHIFT( w, hsub) : w;
221 srcp += src_linesize[
plane];
223 dstp += dst_linesize[
plane];
228 int srcp_linesize = src_linesize[
plane] * k;
229 int dstp_linesize = dst_linesize[
plane] * (interleave ? 2 : 1);
230 for (h = lines; h > 0; h--) {
233 if (h == lines) srcp_above =
srcp;
234 if (h == 1) srcp_below =
srcp;
236 tinterlace->
lowpass_line(dstp, cols, srcp, srcp_above, srcp_below);
237 dstp += dstp_linesize;
238 srcp += srcp_linesize;
242 srcp, src_linesize[plane]*k, cols, lines);
256 tinterlace->
cur = tinterlace->
next;
257 tinterlace->
next = picref;
259 cur = tinterlace->
cur;
260 next = tinterlace->
next;
262 if (!tinterlace->
cur)
265 switch (tinterlace->
mode) {
282 inlink->
format, inlink->
w, inlink->
h,
287 inlink->
format, inlink->
w, inlink->
h,
310 field = (1 + tinterlace->
frame) & 1 ? FIELD_UPPER : FIELD_LOWER;
314 inlink->
format, inlink->
w, inlink->
h,
319 inlink->
format, inlink->
w, inlink->
h,
338 inlink->
format, inlink->
w, inlink->
h,
339 tff ? FIELD_UPPER : FIELD_LOWER, 1, tff ? FIELD_UPPER : FIELD_LOWER,
343 (
const uint8_t **)next->data, next->linesize,
344 inlink->
format, inlink->
w, inlink->
h,
345 tff ? FIELD_LOWER : FIELD_UPPER, 1, tff ? FIELD_LOWER : FIELD_UPPER,
363 tff = next->top_field_first;
372 out->
pts = cur->
pts + next->pts;
378 inlink->
format, inlink->
w, inlink->
h,
379 tff ? FIELD_LOWER : FIELD_UPPER, 1, tff ? FIELD_LOWER : FIELD_UPPER,
383 (
const uint8_t **)next->data, next->linesize,
384 inlink->
format, inlink->
w, inlink->
h,
385 tff ? FIELD_UPPER : FIELD_LOWER, 1, tff ? FIELD_UPPER : FIELD_LOWER,
418 .
name =
"tinterlace",
423 .
inputs = tinterlace_inputs,
425 .priv_class = &tinterlace_class,
static enum AVPixelFormat full_scale_yuvj_pix_fmts[]
static int query_formats(AVFilterContext *ctx)
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
This structure describes decoded (raw) audio or video data.
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
#define AV_LOG_WARNING
Something somehow does not look correct.
Main libavfilter public API header.
int av_image_alloc(uint8_t *pointers[4], int linesizes[4], int w, int h, enum AVPixelFormat pix_fmt, int align)
Allocate an image with size w and h and pixel format pix_fmt, and fill pointers and linesizes accordi...
int h
agreed upon image height
int mode
TInterlaceMode, interlace mode selected.
static int av_cmp_q(AVRational a, AVRational b)
Compare two rationals.
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
static AVRational av_make_q(int num, int den)
Create a rational.
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
int flags
flags affecting interlacing algorithm
AVFilter ff_vf_tinterlace
#define FULL_SCALE_YUVJ_FORMATS
BYTE int const BYTE * srcp
const char * name
Pad name.
AVFilterLink ** inputs
array of pointers to input links
#define av_assert0(cond)
assert() equivalent, that is always enabled.
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
static const AVOption tinterlace_options[]
temporal field interlace filter, ported from MPlayer/libmpcodecs
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
int frame
number of the output frame
static void lowpass_line_c(uint8_t *dstp, ptrdiff_t width, const uint8_t *srcp, const uint8_t *srcp_above, const uint8_t *srcp_below)
AVRational av_mul_q(AVRational b, AVRational c)
Multiply two rationals.
#define AV_LOG_VERBOSE
Detailed information.
int interlaced_frame
The content of the picture is interlaced.
A filter pad used for either input or output.
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
A link between two filters.
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
void ff_tinterlace_init_x86(TInterlaceContext *interlace)
AVRational frame_rate
Frame rate of the stream on the link, or 1/0 if unknown or variable; if left to 0/0, will be automatically copied from the first input of the source filter if it exists.
int vsub
chroma vertical subsampling
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
void * priv
private data for use by the filter
AVRational time_base
Define the time base used by the PTS of the frames/samples which will pass through this link...
static void copy_picture_field(TInterlaceContext *tinterlace, uint8_t *dst[4], int dst_linesize[4], const uint8_t *src[4], int src_linesize[4], enum AVPixelFormat format, int w, int src_h, int src_field, int interleave, int dst_field, int flags)
Copy picture field from src to dst.
simple assert() macros that are a bit more flexible than ISO C assert().
AVFILTER_DEFINE_CLASS(tinterlace)
#define TINTERLACE_FLAG_EXACT_TB
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
int w
agreed upon image width
uint8_t nb_components
The number of components each pixel has, (1-4)
static av_cold void uninit(AVFilterContext *ctx)
AVFilterContext * src
source filter
static const AVFilterPad tinterlace_outputs[]
static const AVFilterPad outputs[]
static int filter_frame(AVFilterLink *inlink, AVFrame *picref)
static const AVRational standard_tbs[]
AVFrame * av_frame_clone(const AVFrame *src)
Create a new frame that references the same data as src.
int format
agreed upon media format
#define FF_ARRAY_ELEMS(a)
static const AVFilterPad inputs[]
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
AVRational sample_aspect_ratio
Sample aspect ratio for the video frame, 0/1 if unknown/unspecified.
uint8_t * black_data[4]
buffer used to fill padded lines
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
static const char * format
rational number numerator/denominator
const char * name
Filter name.
AVRational sample_aspect_ratio
agreed upon sample aspect ratio
AVFilterLink ** outputs
array of pointers to output links
static void interleave(short *output, short **input, int channels, int samples)
static enum AVPixelFormat pix_fmts[]
static const AVFilterPad tinterlace_inputs[]
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
static int config_out_props(AVFilterLink *outlink)
void(* lowpass_line)(uint8_t *dstp, ptrdiff_t width, const uint8_t *srcp, const uint8_t *srcp_above, const uint8_t *srcp_below)
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
int top_field_first
If the content is interlaced, is top field displayed first.
AVFilterContext * dst
dest filter
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
void av_image_copy_plane(uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize, int bytewidth, int height)
Copy image plane from src to dst.
#define FIELD_UPPER_AND_LOWER
AVRational preout_time_base
AVPixelFormat
Pixel format.
int64_t frame_count
Number of past frames sent through the link.
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
#define TINTERLACE_FLAG_VLPF
#define AV_NOPTS_VALUE
Undefined timestamp value.
#define AV_CEIL_RSHIFT(a, b)