mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00: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
@ -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…
Reference in New Issue
Block a user