Lines Matching +full:left +full:- +full:aligned

1 // SPDX-License-Identifier: GPL-2.0
10 #include "delta-debug.h"
20 (char *)&s->streamformat, s->width, s->height, in delta_streaminfo_str()
21 s->profile, s->level, s->dpb, in delta_streaminfo_str()
22 (s->field == V4L2_FIELD_NONE) ? "progressive" : "interlaced", in delta_streaminfo_str()
23 s->other, in delta_streaminfo_str()
24 s->flags & DELTA_STREAMINFO_FLAG_CROP ? "crop=" : "", in delta_streaminfo_str()
25 s->crop.width, s->crop.height, in delta_streaminfo_str()
26 s->crop.left, s->crop.top, in delta_streaminfo_str()
27 s->flags & DELTA_STREAMINFO_FLAG_PIXELASPECT ? "par=" : "", in delta_streaminfo_str()
28 s->pixelaspect.numerator, in delta_streaminfo_str()
29 s->pixelaspect.denominator); in delta_streaminfo_str()
41 "%4.4s %dx%d aligned %dx%d %s %s%dx%d@(%d,%d) %s%d/%d", in delta_frameinfo_str()
42 (char *)&f->pixelformat, f->width, f->height, in delta_frameinfo_str()
43 f->aligned_width, f->aligned_height, in delta_frameinfo_str()
44 (f->field == V4L2_FIELD_NONE) ? "progressive" : "interlaced", in delta_frameinfo_str()
45 f->flags & DELTA_STREAMINFO_FLAG_CROP ? "crop=" : "", in delta_frameinfo_str()
46 f->crop.width, f->crop.height, in delta_frameinfo_str()
47 f->crop.left, f->crop.top, in delta_frameinfo_str()
48 f->flags & DELTA_STREAMINFO_FLAG_PIXELASPECT ? "par=" : "", in delta_frameinfo_str()
49 f->pixelaspect.numerator, in delta_frameinfo_str()
50 f->pixelaspect.denominator); in delta_frameinfo_str()
57 struct delta_dev *delta = ctx->dev; in delta_trace_summary()
58 struct delta_streaminfo *s = &ctx->streaminfo; in delta_trace_summary()
61 if (!(ctx->flags & DELTA_FLAG_STREAMINFO)) in delta_trace_summary()
64 …dev_dbg(delta->dev, "%s %s, %d frames decoded, %d frames output, %d frames dropped, %d stream erro… in delta_trace_summary()
65 ctx->name, in delta_trace_summary()
67 ctx->decoded_frames, in delta_trace_summary()
68 ctx->output_frames, in delta_trace_summary()
69 ctx->dropped_frames, in delta_trace_summary()
70 ctx->stream_errors, in delta_trace_summary()
71 ctx->decode_errors); in delta_trace_summary()