aboutsummaryrefslogtreecommitdiffstats
path: root/src/rtfwk/sa_bcch_ccch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/rtfwk/sa_bcch_ccch.h')
-rw-r--r--src/rtfwk/sa_bcch_ccch.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/rtfwk/sa_bcch_ccch.h b/src/rtfwk/sa_bcch_ccch.h
new file mode 100644
index 0000000..5a9d71e
--- /dev/null
+++ b/src/rtfwk/sa_bcch_ccch.h
@@ -0,0 +1,36 @@
+/* GMR-1 RT framework: BCCH/CCCH task */
+
+/* (C) 2011-2016 by Sylvain Munaut <tnt@246tNt.com>
+ * All Rights Reserved
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef __RTFWK_SA_BCCH_CCCH_H__
+#define __RTFWK_SA_BCCH_CCCH_H__
+
+#include <stdint.h>
+
+struct app_state;
+
+struct bcch_sink_params {
+ struct app_state *as;
+ int chan_id;
+ uint64_t align;
+ float freq_err;
+};
+
+extern const struct sample_actor_desc bcch_sink;
+
+#endif /* __RTFWK_SA_BCCH_CCCH_H__ */