summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-02-02 15:37:19 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-02-08 13:20:40 +0000
commit36ba80aacb2a582854f0e5e3ed0d69ca63db52ea (patch)
treea2091d0ad11007b6be9a54ea8463c3fcd25b8212 /testing
parent3fcc9a3c83c807792846ae2c9f98aeb447e62805 (diff)
Remove csrc from the RTPHeader struct.
This is not used by anything in the code, so we shouldn't have it in the header.
Diffstat (limited to 'testing')
-rw-r--r--testing/BUILD.bazel6
1 files changed, 2 insertions, 4 deletions
diff --git a/testing/BUILD.bazel b/testing/BUILD.bazel
index ca354998..afb1a8aa 100644
--- a/testing/BUILD.bazel
+++ b/testing/BUILD.bazel
@@ -30,15 +30,13 @@ cc_binary(
30cc_binary( 30cc_binary(
31 name = "av_test", 31 name = "av_test",
32 srcs = ["av_test.c"], 32 srcs = ["av_test.c"],
33 linkopts = [
34 "-lopencv_highgui",
35 "-lopencv_core",
36 ],
37 deps = [ 33 deps = [
38 "//c-toxcore/toxav", 34 "//c-toxcore/toxav",
39 "//c-toxcore/toxav:monolith", 35 "//c-toxcore/toxav:monolith",
40 "//c-toxcore/toxcore", 36 "//c-toxcore/toxcore",
41 "@portaudio", 37 "@portaudio",
42 "@sndfile", 38 "@sndfile",
39 "@opencv//:core",
40 "@opencv//:highgui",
43 ], 41 ],
44) 42)