Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
543fceba
Commit
543fceba
authored
Dec 02, 2014
by
Benoit Fouet
Committed by
Michael Niedermayer
Dec 02, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
apng: move shared header from avformat to avcodec.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
f151f541
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
apng.h
libavcodec/apng.h
+3
-3
pngdec.c
libavcodec/pngdec.c
+1
-1
apngdec.c
libavformat/apngdec.c
+1
-1
No files found.
libav
format
/apng.h
→
libav
codec
/apng.h
View file @
543fceba
...
@@ -24,8 +24,8 @@
...
@@ -24,8 +24,8 @@
* APNG common header
* APNG common header
*/
*/
#ifndef AV
FORMAT
_APNG_H
#ifndef AV
CODEC
_APNG_H
#define AV
FORMAT
_APNG_H
#define AV
CODEC
_APNG_H
enum
{
enum
{
APNG_DISPOSE_OP_NONE
=
0
,
APNG_DISPOSE_OP_NONE
=
0
,
...
@@ -38,4 +38,4 @@ enum {
...
@@ -38,4 +38,4 @@ enum {
APNG_BLEND_OP_OVER
=
1
,
APNG_BLEND_OP_OVER
=
1
,
};
};
#endif
/* AV
FORMAT
_APNG_H */
#endif
/* AV
CODEC
_APNG_H */
libavcodec/pngdec.c
View file @
543fceba
...
@@ -26,10 +26,10 @@
...
@@ -26,10 +26,10 @@
#include "avcodec.h"
#include "avcodec.h"
#include "bytestream.h"
#include "bytestream.h"
#include "internal.h"
#include "internal.h"
#include "apng.h"
#include "png.h"
#include "png.h"
#include "pngdsp.h"
#include "pngdsp.h"
#include "thread.h"
#include "thread.h"
#include "libavformat/apng.h"
#include <zlib.h>
#include <zlib.h>
...
...
libavformat/apngdec.c
View file @
543fceba
...
@@ -26,13 +26,13 @@
...
@@ -26,13 +26,13 @@
* @see http://www.w3.org/TR/PNG
* @see http://www.w3.org/TR/PNG
*/
*/
#include "apng.h"
#include "avformat.h"
#include "avformat.h"
#include "avio_internal.h"
#include "avio_internal.h"
#include "internal.h"
#include "internal.h"
#include "libavutil/imgutils.h"
#include "libavutil/imgutils.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/opt.h"
#include "libavutil/opt.h"
#include "libavcodec/apng.h"
#include "libavcodec/png.h"
#include "libavcodec/png.h"
#include "libavcodec/bytestream.h"
#include "libavcodec/bytestream.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment