From fdbf4842b6d371773e8868165625ee617ae3ff18 Mon Sep 17 00:00:00 2001 From: Thierry FOURNIER Date: Tue, 26 Nov 2013 09:54:50 +0100 Subject: [PATCH] MINOR: sample: add a private field to the struct sample_conv These flags will be used for maps, and possibly later to pass some extra information to other converters if needed. --- include/types/sample.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/types/sample.h b/include/types/sample.h index a2d2296c8b..46bc75b6af 100644 --- a/include/types/sample.h +++ b/include/types/sample.h @@ -260,6 +260,7 @@ struct sample_conv { char **err_msg); /* argument validation function */ unsigned int in_type; /* expected input sample type */ unsigned int out_type; /* output sample type */ + unsigned int private; /* private values. only used by maps */ }; /* sample conversion expression */ -- 2.47.3