apng: move shared header from avformat to avcodec.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Benoit Fouet 2014-12-02 09:21:47 +01:00 committed by Michael Niedermayer
parent f151f5415a
commit 543fceba9c
3 changed files with 5 additions and 5 deletions

View File

@ -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 */

View File

@ -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>

View File

@ -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"