]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
More tweaks
authorSteve Underwood <steveu@coppice.org>
Sun, 26 Aug 2012 12:28:48 +0000 (20:28 +0800)
committerSteve Underwood <steveu@coppice.org>
Sun, 26 Aug 2012 12:28:48 +0000 (20:28 +0800)
libs/spandsp/src/t85_decode.c
libs/spandsp/src/t85_encode.c

index fc32cccb0fe36e4758cadc65fb4a7ee80858a84e..8193c10a0df571a92a005a41ba5e8647deac0d6a 100644 (file)
@@ -799,6 +799,12 @@ SPAN_DECLARE(int) t85_decode_restart(t85_decode_state_t *s)
 }
 /*- End of function --------------------------------------------------------*/
 
+SPAN_DECLARE(logging_state_t *) t85_decode_get_logging_state(t85_decode_state_t *s)
+{
+    return &s->logging;
+}
+/*- End of function --------------------------------------------------------*/
+
 SPAN_DECLARE(t85_decode_state_t *) t85_decode_init(t85_decode_state_t *s,
                                                    t4_row_write_handler_t handler,
                                                    void *user_data)
index 062f7b685bd51db1161a8b95843a1ea815a85809..d9c4d200e2b3a299beb3fa86d4f00a0208973b7a 100644 (file)
@@ -675,6 +675,12 @@ SPAN_DECLARE(int) t85_encode_restart(t85_encode_state_t *s, uint32_t image_width
 }
 /*- End of function --------------------------------------------------------*/
 
+SPAN_DECLARE(logging_state_t *) t85_encode_get_logging_state(t85_encode_state_t *s)
+{
+    return &s->logging;
+}
+/*- End of function --------------------------------------------------------*/
+
 SPAN_DECLARE(t85_encode_state_t *) t85_encode_init(t85_encode_state_t *s,
                                                    uint32_t image_width,
                                                    uint32_t image_length,