summaryrefslogtreecommitdiff
path: root/src/inputstreamer.cc
blob: 495f1995d1931eb643fb053e7f6a0136595cf84f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
 *            inputstreamer.cc
 *
 *  Sat Sep 20 10:15:51 CEST 2014
 *  Copyright 2014 Bent Bisballe Nyeng
 *  deva@aasimon.org
 ****************************************************************************/

/*
 *  This file is part of SimpleRTP.
 *
 *  SimpleRTP is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  SimpleRTP 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 General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with SimpleRTP; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 */
#include "inputstreamer.h"

#include <QApplication>

#define KEY "123456789012345678901234567890123456789012345678901234567890"
#define SSRC 1234567890
#define CSRC_V 42
#define CSRC_A 43

InputStreamer::InputStreamer(QHostAddress addr, quint16 port)
  : socket(this)
{
  total = 0;

  socket.bind(port);
  this->addr = addr;
  this->port = port;

  running = true;
  start();
}

InputStreamer::~InputStreamer()
{
  running = false;
  wait();
}

#include <unistd.h>
void InputStreamer::run()
{
  lrtp_status_t status;

  lrtp = lrtp_init(&status, KEY, SSRC);
  if(status != LRTP_OK) printf("O:lrtp_init err: %d\n", status);

  int res;
  res = lrtp_create_profile(lrtp, PROFILE_JPEG, CSRC_V, OPTION_END);
  if(res != 0) printf("O:lrtp_create_profile (v) err: %d\n", res);

  res = lrtp_create_profile(lrtp, PROFILE_OPUS, CSRC_A, OPTION_END);
  if(res != 0) printf("O:lrtp_create_profile (a) err: %d\n", res);

  char packet[64*1024];
  while(running) {
    if(!socket.hasPendingDatagrams()) {
      qApp->processEvents();
      usleep(2000); // sleep 2ms
      continue;
    }
    qint64 packetsize =
      socket.readDatagram(packet, (quint64)sizeof(packet), 0, 0);
    if(packetsize < 1) {
      continue;
    }
    total += packetsize;

    // Now decode the sucker....
    lrtp_unpack(lrtp, packet, packetsize);
    int n = 0;
    int ret;
    char frame[512 * 1024]; // 512kbyte should be enough for even the larges
                            //  JPEG frames...
    unsigned int csrc;
    unsigned int ts;
    while((ret = lrtp_dequeue_frame(lrtp, frame, sizeof(frame), &csrc, &ts))
              != 0) {
      if(ret < 0) printf("\nlrtp_dequeue_frame: %d\n", ret);
      if(csrc == CSRC_V) {
        // Video frame
        Frame f(frame, ret);
        f.ts = ts;
        emit newImage(f);
        //printf("v"); fflush(stdout);
      } else if(csrc == CSRC_A) {
        // Audio frame
        Frame f(frame, ret);
        f.ts = ts;
        emit newAudio(f);
        //printf("a"); fflush(stdout);
      } else {
        printf("Unknown stream: CSRC: %d\n", csrc);
      }
    }
  }

  status = lrtp_destroy_profile(lrtp, CSRC_V);
  if(status != LRTP_OK) printf("O:lrtp_destroy_profile (v) err: %d\n", status);

  status = lrtp_destroy_profile(lrtp, CSRC_A);
  if(status != LRTP_OK) printf("O:lrtp_destroy_profile (a) err: %d\n", status);
 
  status = lrtp_close(lrtp);
  if(status != LRTP_OK) printf("O:lrtp_close err: %d\n", status);
}

size_t InputStreamer::getTotal()
{
  size_t t = total;
  total = 0;
  return t;
}