summaryrefslogtreecommitdiff
path: root/libavfilter/f_graphmonitor.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2021-08-31 11:03:14 -0300
committerJames Almer <jamrial@gmail.com>2022-03-15 09:42:46 -0300
commit1f96db959c1235bb7079d354e09914a0a2608f62 (patch)
tree21ac480d5b148c0524761853e6badb3a90a7ca3f /libavfilter/f_graphmonitor.c
parent8a5896ec1f635ccf0d726f7ba7a06649ebeebf25 (diff)
avfilter: convert to new channel layout API
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavfilter/f_graphmonitor.c')
-rw-r--r--libavfilter/f_graphmonitor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/f_graphmonitor.c b/libavfilter/f_graphmonitor.c
index 9cc5ea940e..7360a7f760 100644
--- a/libavfilter/f_graphmonitor.c
+++ b/libavfilter/f_graphmonitor.c
@@ -226,7 +226,7 @@ static int draw_items(AVFilterContext *ctx, AVFrame *out,
if (l->type == AVMEDIA_TYPE_VIDEO) {
snprintf(buffer, sizeof(buffer)-1, " | size: %dx%d", l->w, l->h);
} else if (l->type == AVMEDIA_TYPE_AUDIO) {
- snprintf(buffer, sizeof(buffer)-1, " | channels: %d", l->channels);
+ snprintf(buffer, sizeof(buffer)-1, " | channels: %d", l->ch_layout.nb_channels);
}
drawtext(out, xpos, ypos, buffer, s->white);
xpos += strlen(buffer) * 8;