Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
3b1a27e0
Commit
3b1a27e0
authored
Apr 20, 2003
by
Fabrice Bellard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added progressive image support
Originally committed as revision 1796 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
8b46d75e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
avformat.h
libavformat/avformat.h
+6
-1
No files found.
libavformat/avformat.h
View file @
3b1a27e0
...
...
@@ -7,7 +7,7 @@ extern "C" {
#define LIBAVFORMAT_VERSION_INT 0x000406
#define LIBAVFORMAT_VERSION "0.4.6"
#define LIBAVFORMAT_BUILD 460
3
#define LIBAVFORMAT_BUILD 460
4
#include "avcodec.h"
...
...
@@ -219,9 +219,13 @@ typedef struct AVImageInfo {
enum
PixelFormat
pix_fmt
;
/* requested pixel format */
int
width
;
/* requested width */
int
height
;
/* requested height */
int
progressive
;
/* image is progressive (e.g. interleaved GIF) */
AVPicture
pict
;
/* returned allocated image */
}
AVImageInfo
;
/* AVImageFormat.flags field constants */
#define AVIMAGE_PROGRESSIVE 0x0001
/* image format support progressive output */
typedef
struct
AVImageFormat
{
const
char
*
name
;
const
char
*
extensions
;
...
...
@@ -236,6 +240,7 @@ typedef struct AVImageFormat {
/* write the image */
int
supported_pixel_formats
;
/* mask of supported formats for output */
int
(
*
img_write
)(
ByteIOContext
*
,
AVImageInfo
*
);
int
flags
;
struct
AVImageFormat
*
next
;
}
AVImageFormat
;
...
...
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