RELEASE/1.2debug-cidebug-ci-sanitisersfaster-cavernloglog-selectstereostereo-2025walls-datawalls-data-hanging-as-warningwarn-only-for-hanging-survey
| Rev | Line | |
|---|
| [6a4cdcb6] | 1 | // |
|---|
| 2 | // moviemaker.h |
|---|
| 3 | // |
|---|
| 4 | // Class for writing movies from Aven. |
|---|
| 5 | // |
|---|
| [029fdb4] | 6 | // Copyright (C) 2004,2010 Olly Betts |
|---|
| [6a4cdcb6] | 7 | // |
|---|
| 8 | // This program is free software; you can redistribute it and/or modify |
|---|
| 9 | // it under the terms of the GNU General Public License as published by |
|---|
| 10 | // the Free Software Foundation; either version 2 of the License, or |
|---|
| 11 | // (at your option) any later version. |
|---|
| 12 | // |
|---|
| 13 | // This program is distributed in the hope that it will be useful, |
|---|
| 14 | // but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 15 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 16 | // GNU General Public License for more details. |
|---|
| 17 | // |
|---|
| 18 | // You should have received a copy of the GNU General Public License |
|---|
| 19 | // along with this program; if not, write to the Free Software |
|---|
| [ecbc6c18] | 20 | // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|---|
| [6a4cdcb6] | 21 | // |
|---|
| 22 | |
|---|
| [1805274] | 23 | struct AVFormatContext; |
|---|
| 24 | struct AVStream; |
|---|
| [6a4cdcb6] | 25 | struct AVFrame; |
|---|
| 26 | struct AVPicture; |
|---|
| 27 | |
|---|
| 28 | class MovieMaker { |
|---|
| [1805274] | 29 | AVFormatContext *oc; |
|---|
| 30 | AVStream *st; |
|---|
| [6a4cdcb6] | 31 | int out_size; |
|---|
| 32 | AVFrame *frame; |
|---|
| 33 | unsigned char *outbuf; |
|---|
| 34 | AVPicture *in; |
|---|
| 35 | AVPicture *out; |
|---|
| 36 | unsigned char *pixels; |
|---|
| 37 | |
|---|
| 38 | public: |
|---|
| [1805274] | 39 | MovieMaker(); |
|---|
| 40 | bool Open(const char *fnm, int width, int height); |
|---|
| [6a4cdcb6] | 41 | unsigned char * GetBuffer() const; |
|---|
| 42 | int GetWidth() const; |
|---|
| 43 | int GetHeight() const; |
|---|
| 44 | void AddFrame(); |
|---|
| 45 | ~MovieMaker(); |
|---|
| 46 | }; |
|---|
Note: See
TracBrowser
for help on using the repository browser.