diff options
author | Benoit Fouet <benoit.fouet@free.fr> | 2014-11-25 10:52:21 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-11-26 00:59:45 +0100 |
commit | 4acefd25215a0d0ac6cf65971e73400eaaa5e64e (patch) | |
tree | 06f091977104333f0718e7d60f08c4e54b5251d5 /libavformat/apng.h | |
parent | 5badcdf20d98b7edede3d7701d31dba58822a99a (diff) | |
download | ffmpeg-4acefd25215a0d0ac6cf65971e73400eaaa5e64e.tar.gz |
avformat/apngdec: account for blend and dispose operations.
When the dimensions are the entire frame ones, and the dispose operation
is to reset to background, or the new frame overwrites the new one, then
consider the frame as a key one.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/apng.h')
-rw-r--r-- | libavformat/apng.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/libavformat/apng.h b/libavformat/apng.h new file mode 100644 index 0000000000..2abf011d2d --- /dev/null +++ b/libavformat/apng.h @@ -0,0 +1,41 @@ +/* + * APNG common header + * Copyright (c) 2014 Benoit Fouet + * + * This file is part of FFmpeg. + * + * FFmpeg 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. + * + * FFmpeg 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. + * + * You should have received a copy of the GNU Lesser General Public + * License along with FFmpeg; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +/** + * @file + * APNG common header + */ + +#ifndef AVFORMAT_APNG_H +#define AVFORMAT_APNG_H + +enum { + APNG_DISPOSE_OP_NONE = 0, + APNG_DISPOSE_OP_BACKGROUND = 1, + APNG_DISPOSE_OP_PREVIOUS = 2, +}; + +enum { + APNG_BLEND_OP_SOURCE = 0, + APNG_BLEND_OP_OVER = 1, +}; + +#endif /* AVFORMAT_APNG_H */ |