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
8ad04d24
Commit
8ad04d24
authored
May 04, 2015
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf/apngenc: Fix png remuxing by using default extension apng.
parent
d90f91c1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
Changelog
Changelog
+1
-1
apngenc.c
libavformat/apngenc.c
+1
-1
version.h
libavformat/version.h
+1
-1
No files found.
Changelog
View file @
8ad04d24
...
...
@@ -12,7 +12,7 @@ version <next>:
- Detelecine filter
- Intel QSV-accelerated H.264 encoding
- MMAL-accelerated H.264 decoding
- basic APNG encoder and muxer
- basic APNG encoder and muxer
with default extension "apng"
- unpack DivX-style packed B-frames in MPEG-4 bitstream filter
- WebM Live Chunk Muxer
- nvenc level and tier options
...
...
libavformat/apngenc.c
View file @
8ad04d24
...
...
@@ -259,7 +259,7 @@ AVOutputFormat ff_apng_muxer = {
.
name
=
"apng"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Animated Portable Network Graphics"
),
.
mime_type
=
"image/png"
,
.
extensions
=
"png"
,
.
extensions
=
"
a
png"
,
.
priv_data_size
=
sizeof
(
APNGMuxContext
),
.
audio_codec
=
AV_CODEC_ID_NONE
,
.
video_codec
=
AV_CODEC_ID_APNG
,
...
...
libavformat/version.h
View file @
8ad04d24
...
...
@@ -31,7 +31,7 @@
#define LIBAVFORMAT_VERSION_MAJOR 56
#define LIBAVFORMAT_VERSION_MINOR 31
#define LIBAVFORMAT_VERSION_MICRO 10
1
#define LIBAVFORMAT_VERSION_MICRO 10
2
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
LIBAVFORMAT_VERSION_MINOR, \
...
...
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