Changeset 3b6c1d4 in mainline
- Timestamp:
- 2013-04-02T15:13:12Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 62beb4b
- Parents:
- 2d1fdcad
- Location:
- uspace/srv/audio/hound
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/audio/hound/Makefile
r2d1fdcad r3b6c1d4 47 47 audio_source.c \ 48 48 hound.c \ 49 hound_ctx.c \ 49 50 iface.c \ 50 51 main.c -
uspace/srv/audio/hound/hound.c
r2d1fdcad r3b6c1d4 75 75 FIND_BY_NAME(sink); 76 76 } 77 77 78 static int hound_disconnect_internal(hound_t *hound, const char* source_name, const char* sink_name); 78 79 … … 82 83 fibril_mutex_initialize(&hound->list_guard); 83 84 list_initialize(&hound->devices); 85 list_initialize(&hound->contexts); 84 86 list_initialize(&hound->sources); 85 87 list_initialize(&hound->sinks); 86 88 return EOK; 89 } 90 91 int hound_add_ctx(hound_t *hound, hound_ctx_t *ctx) 92 { 93 log_info("Trying to add context %p", ctx); 94 assert(hound); 95 if (!ctx) 96 return EINVAL; 97 list_append(&ctx->link, &hound->contexts); 98 //TODO register sinks/sources 99 return EOK; 100 } 101 102 int hound_remove_ctx(hound_t *hound, hound_ctx_t *ctx) 103 { 104 assert(hound); 105 if (!ctx) 106 return EINVAL; 107 list_remove(&ctx->link); 108 return EOK; 109 } 110 111 hound_ctx_t *hound_get_ctx_by_id(hound_t *hound, hound_context_id_t id) 112 { 113 assert(hound); 114 115 //TODO locking 116 117 list_foreach(hound->contexts, it) { 118 hound_ctx_t *ctx = hound_ctx_from_link(it); 119 if (hound_ctx_get_id(ctx) == id) 120 return ctx; 121 } 122 return NULL; 87 123 } 88 124 -
uspace/srv/audio/hound/hound.h
r2d1fdcad r3b6c1d4 43 43 #include <fibril_synch.h> 44 44 #include <pcm/format.h> 45 #include <hound/protocol.h> 45 46 47 #include "hound_ctx.h" 46 48 #include "audio_source.h" 47 49 #include "audio_sink.h" … … 51 53 fibril_mutex_t list_guard; 52 54 list_t devices; 55 list_t contexts; 53 56 list_t sources; 54 57 list_t sinks; … … 56 59 57 60 int hound_init(hound_t *hound); 61 int hound_add_ctx(hound_t *hound, hound_ctx_t *ctx); 62 int hound_remove_ctx(hound_t *hound, hound_ctx_t *ctx); 63 hound_ctx_t *hound_get_ctx_by_id(hound_t *hound, hound_context_id_t id); 64 58 65 int hound_add_device(hound_t *hound, service_id_t id, const char* name); 59 66 int hound_add_source(hound_t *hound, audio_source_t *source); -
uspace/srv/audio/hound/iface.c
r2d1fdcad r3b6c1d4 38 38 #include <hound/protocol.h> 39 39 #include <malloc.h> 40 41 #include "hound.h" 42 #include "hound_ctx.h" 40 43 #include "log.h" 41 44 … … 43 46 const char *name, bool record) 44 47 { 45 log_info("%s: %p, %s, %s", __FUNCTION__, server, name, record ? "REC" : "PLAY"); 46 *id = 1; 47 return EOK; 48 assert(server); 49 assert(id); 50 assert(name); 51 52 hound_ctx_t *ctx = record ? hound_record_ctx_get(name) : 53 hound_playback_ctx_get(name); 54 if (!ctx) 55 return ENOMEM; 56 57 const int ret = hound_add_ctx(server, ctx); 58 if (ret != EOK) 59 hound_ctx_destroy(ctx); 60 else 61 *id = hound_ctx_get_id(ctx); 62 return ret; 48 63 } 49 64 50 65 static int iface_rem_context(void *server, hound_context_id_t id) 51 66 { 67 assert(server); 68 hound_ctx_t *ctx = hound_get_ctx_by_id(server, id); 69 if (!ctx) 70 return EINVAL; 71 hound_remove_ctx(server, ctx); 72 hound_ctx_destroy(ctx); 52 73 log_info("%s: %p, %d", __FUNCTION__, server, id); 53 return E NOTSUP;74 return EOK; 54 75 } 55 76 56 77 static bool iface_is_record_context(void *server, hound_context_id_t id) 57 78 { 79 assert(server); 80 hound_ctx_t *ctx = hound_get_ctx_by_id(server, id); 81 if (!ctx) 82 return false; 58 83 log_info("%s: %p, %d", __FUNCTION__, server, id); 59 return false;84 return hound_ctx_is_record(ctx); 60 85 } 61 86 … … 73 98 { 74 99 log_info("%s: %p, %s -> %s", __FUNCTION__, server, source, sink); 75 return E OK;100 return ENOTSUP; 76 101 } 77 102 … … 89 114 pcm_sample_format_str(format.sample_format)); 90 115 *data = (void*)"TEST_STREAM"; 91 return E OK;116 return ENOTSUP; 92 117 } 93 118
Note:
See TracChangeset
for help on using the changeset viewer.