mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
apng: move shared header from avformat to avcodec.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f151f5415a
commit
543fceba9c
3 changed files with 5 additions and 5 deletions
|
|
@ -24,8 +24,8 @@
|
|||
* APNG common header
|
||||
*/
|
||||
|
||||
#ifndef AVFORMAT_APNG_H
|
||||
#define AVFORMAT_APNG_H
|
||||
#ifndef AVCODEC_APNG_H
|
||||
#define AVCODEC_APNG_H
|
||||
|
||||
enum {
|
||||
APNG_DISPOSE_OP_NONE = 0,
|
||||
|
|
@ -38,4 +38,4 @@ enum {
|
|||
APNG_BLEND_OP_OVER = 1,
|
||||
};
|
||||
|
||||
#endif /* AVFORMAT_APNG_H */
|
||||
#endif /* AVCODEC_APNG_H */
|
||||
|
|
@ -26,10 +26,10 @@
|
|||
#include "avcodec.h"
|
||||
#include "bytestream.h"
|
||||
#include "internal.h"
|
||||
#include "apng.h"
|
||||
#include "png.h"
|
||||
#include "pngdsp.h"
|
||||
#include "thread.h"
|
||||
#include "libavformat/apng.h"
|
||||
|
||||
#include <zlib.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -26,13 +26,13 @@
|
|||
* @see http://www.w3.org/TR/PNG
|
||||
*/
|
||||
|
||||
#include "apng.h"
|
||||
#include "avformat.h"
|
||||
#include "avio_internal.h"
|
||||
#include "internal.h"
|
||||
#include "libavutil/imgutils.h"
|
||||
#include "libavutil/intreadwrite.h"
|
||||
#include "libavutil/opt.h"
|
||||
#include "libavcodec/apng.h"
|
||||
#include "libavcodec/png.h"
|
||||
#include "libavcodec/bytestream.h"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue