[FFmpeg-devel] [PATCH] avfilter/avf_showcqt: draw text optionally
Paul B Mahol
onemda at gmail.com
Tue Sep 1 14:33:51 CEST 2015
Signed-off-by: Paul B Mahol <onemda at gmail.com>
---
libavfilter/avf_showcqt.c | 16 ++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)
diff --git a/libavfilter/avf_showcqt.c b/libavfilter/avf_showcqt.c
index 85f9ea9..a70c4b0 100644
--- a/libavfilter/avf_showcqt.c
+++ b/libavfilter/avf_showcqt.c
@@ -93,6 +93,7 @@ typedef struct {
float gamma2; /* gamma of bargraph */
int fps; /* the required fps is so strict, so it's enough to be int, but 24000/1001 etc cannot be encoded */
int count; /* fps * count = transform rate */
+ int draw_text;
} ShowCQTContext;
#define OFFSET(x) offsetof(ShowCQTContext, x)
@@ -110,6 +111,7 @@ static const AVOption showcqt_options[] = {
{ "count", "set number of transform per frame", OFFSET(count), AV_OPT_TYPE_INT, { .i64 = 6 }, 1, 30, FLAGS },
{ "fontfile", "set font file", OFFSET(fontfile), AV_OPT_TYPE_STRING, { .str = NULL }, CHAR_MIN, CHAR_MAX, FLAGS },
{ "fontcolor", "set font color", OFFSET(fontcolor), AV_OPT_TYPE_STRING, { .str = FONTCOLOR_DEFAULT }, CHAR_MIN, CHAR_MAX, FLAGS },
+ { "text", "draw text", OFFSET(draw_text), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, FLAGS },
{ NULL }
};
@@ -665,7 +667,7 @@ static int plot_cqt(AVFilterLink *inlink)
}
/* drawing font */
- if (s->font_alpha) {
+ if (s->font_alpha && s->draw_text) {
for (y = 0; y < font_height; y++) {
uint8_t *lineptr = data + (spectogram_height + y) * linesize;
uint8_t *spectogram_src = s->spectogram + s->spectogram_index * linesize;
@@ -678,7 +680,7 @@ static int plot_cqt(AVFilterLink *inlink)
fontcolor_value += 3;
}
}
- } else {
+ } else if (s->draw_text) {
for (y = 0; y < font_height; y++) {
uint8_t *lineptr = data + (spectogram_height + y) * linesize;
memcpy(lineptr, s->spectogram + s->spectogram_index * linesize, video_width*3);
@@ -713,6 +715,16 @@ static int plot_cqt(AVFilterLink *inlink)
}
}
}
+ } else {
+ for (y = 0; y < font_height; y++) {
+ uint8_t *lineptr = data + (spectogram_height + y) * linesize;
+ uint8_t *spectogram_src = s->spectogram + s->spectogram_index * linesize;
+ for (x = 0; x < video_width; x++) {
+ lineptr[3*x] = spectogram_src[3*x];
+ lineptr[3*x+1] = spectogram_src[3*x+1];
+ lineptr[3*x+2] = spectogram_src[3*x+2];
+ }
+ }
}
/* drawing spectogram/sonogram */
--
1.7.11.2
More information about the ffmpeg-devel
mailing list