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
f1ea5c2a
Commit
f1ea5c2a
authored
Jul 17, 2007
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
typo fixes
Originally committed as revision 9719 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
04d2e45f
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
imgconvert.c
libavcodec/imgconvert.c
+3
-3
imgconvert_template.h
libavcodec/imgconvert_template.h
+1
-1
pngdec.c
libavcodec/pngdec.c
+1
-1
resample.c
libavcodec/resample.c
+2
-2
grab.c
libavformat/grab.c
+1
-1
No files found.
libavcodec/imgconvert.c
View file @
f1ea5c2a
/*
* Misc image conver
t
ion routines
* Misc image conver
s
ion routines
* Copyright (c) 2001, 2002, 2003 Fabrice Bellard.
*
* This file is part of FFmpeg.
...
...
@@ -21,7 +21,7 @@
/**
* @file imgconvert.c
*
Misc image convertion routines.
*
misc image conversion routines
*/
/* TODO:
...
...
@@ -1852,7 +1852,7 @@ typedef struct ConvertEntry {
const
AVPicture
*
src
,
int
width
,
int
height
);
}
ConvertEntry
;
/* Add each new conver
t
ion function in this table. In order to be able
/* Add each new conver
s
ion function in this table. In order to be able
to convert from any format to any format, the following constraints
must be satisfied:
...
...
libavcodec/imgconvert_template.h
View file @
f1ea5c2a
/*
*
Templates for image convert
ion routines
*
templates for image convers
ion routines
* Copyright (c) 2001, 2002, 2003 Fabrice Bellard.
*
* This file is part of FFmpeg.
...
...
libavcodec/pngdec.c
View file @
f1ea5c2a
...
...
@@ -72,7 +72,7 @@ static const uint8_t png_pass_dsp_mask[NB_PASSES] = {
};
/* NOTE: we try to construct a good looking image at each pass. width
is the original image width. We also do pixel format conver
t
ion at
is the original image width. We also do pixel format conver
s
ion at
this stage */
static
void
png_put_interlaced_row
(
uint8_t
*
dst
,
int
width
,
int
bits_per_pixel
,
int
pass
,
...
...
libavcodec/resample.c
View file @
f1ea5c2a
/*
*
Sample rate convert
ion for both audio and video
*
samplerate convers
ion for both audio and video
* Copyright (c) 2000 Fabrice Bellard.
*
* This file is part of FFmpeg.
...
...
@@ -21,7 +21,7 @@
/**
* @file resample.c
*
Sample rate convertion for both audio and video.
*
samplerate conversion for both audio and video
*/
#include "avcodec.h"
...
...
libavformat/grab.c
View file @
f1ea5c2a
...
...
@@ -212,7 +212,7 @@ static int grab_read_header(AVFormatContext *s1, AVFormatParameters *ap)
if
(
aiw_init
(
s
)
<
0
)
goto
fail
;
s
->
aiw_enabled
=
1
;
/* force 420P format because conver
t
ion from YUV422 to YUV420P
/* force 420P format because conver
s
ion from YUV422 to YUV420P
is done in this driver (ugly) */
s
->
frame_format
=
VIDEO_PALETTE_YUV420P
;
}
...
...
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