X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fsdp.c;h=b39661cd28f3b06282506ff04606329912ea4bc1;hb=c8729c312c54aaf09b9d70e3b19d28ebbdd7aa3e;hp=369de1c14500ae0f6566b91a43fda81979b720d4;hpb=1b4a582b04fc39d9d4d930acb4d0803bdedfb32e;p=deb_shairplay.git diff --git a/src/lib/sdp.c b/src/lib/sdp.c index 369de1c..b39661c 100644 --- a/src/lib/sdp.c +++ b/src/lib/sdp.c @@ -1,3 +1,17 @@ +/** + * Copyright (C) 2011-2012 Juho Vähä-Herttua + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + */ + #include #include #include @@ -61,9 +75,9 @@ parse_sdp_line(sdp_t *sdp, char *line) if (!value) break; *(value++) = '\0'; - if (!strcmp(key, "rtpmap")) { + if (!strcmp(key, "rtpmap") && !sdp->rtpmap) { sdp->rtpmap = value; - } else if (!strcmp(key, "fmtp")) { + } else if (!strcmp(key, "fmtp") && !sdp->fmtp) { sdp->fmtp = value; } else if (!strcmp(key, "rsaaeskey")) { sdp->rsaaeskey = value;