blob: 794637e9aceae14688ccaca4955a22ffd79f4591 [file] [log] [blame]
Aline Gondim Santosfd302912022-08-18 12:07:46 -03001/**
2 * Copyright (C) 2020-2021 Savoir-faire Linux Inc.
3 *
4 * Author: Aline Gondim Santos <aline.gondimsantos@savoirfairelinux.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21#pragma once
22
23extern "C" {
24#include <libavutil/frame.h>
25}
26#include <observer.h>
27
28namespace jami {
29
Aline Gondim Santos329f8622022-11-08 08:04:22 -030030class VideoSubscriberTester : public Observer<AVFrame*>
Aline Gondim Santosfd302912022-08-18 12:07:46 -030031{
32public:
33 VideoSubscriberTester() {}
34 ~VideoSubscriberTester();
35
Aline Gondim Santos329f8622022-11-08 08:04:22 -030036 virtual void update(Observable<AVFrame*>*, AVFrame* const&) override {}
37 virtual void attached(Observable<AVFrame*>*) override;
38 virtual void detached(Observable<AVFrame*>*) override;
Aline Gondim Santosfd302912022-08-18 12:07:46 -030039
40 void detach();
41
42private:
43 // Observer pattern
44 Observable<AVFrame*>* observable_{};
45};
46} // namespace jami