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
5915a6dc
Commit
5915a6dc
authored
Jan 11, 2003
by
Fabrice Bellard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
moved avpicture_xxx to imgconvert
Originally committed as revision 1434 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
2d1a4094
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
104 deletions
+0
-104
utils.c
libavcodec/utils.c
+0
-104
No files found.
libavcodec/utils.c
View file @
5915a6dc
...
...
@@ -383,19 +383,6 @@ AVCodec *avcodec_find(enum CodecID id)
return
NULL
;
}
const
char
*
pix_fmt_str
[]
=
{
"yuv420p"
,
"yuv422"
,
"rgb24"
,
"bgr24"
,
"yuv422p"
,
"yuv444p"
,
"rgba32"
,
"bgra32"
,
"yuv410p"
,
"yuv411p"
,
};
void
avcodec_string
(
char
*
buf
,
int
buf_size
,
AVCodecContext
*
enc
,
int
encode
)
{
const
char
*
codec_name
;
...
...
@@ -510,97 +497,6 @@ void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
}
}
/* Picture field are filled with 'ptr' addresses */
void
avpicture_fill
(
AVPicture
*
picture
,
UINT8
*
ptr
,
int
pix_fmt
,
int
width
,
int
height
)
{
int
size
;
size
=
width
*
height
;
switch
(
pix_fmt
)
{
case
PIX_FMT_YUV420P
:
picture
->
data
[
0
]
=
ptr
;
picture
->
data
[
1
]
=
picture
->
data
[
0
]
+
size
;
picture
->
data
[
2
]
=
picture
->
data
[
1
]
+
size
/
4
;
picture
->
linesize
[
0
]
=
width
;
picture
->
linesize
[
1
]
=
width
/
2
;
picture
->
linesize
[
2
]
=
width
/
2
;
break
;
case
PIX_FMT_YUV422P
:
picture
->
data
[
0
]
=
ptr
;
picture
->
data
[
1
]
=
picture
->
data
[
0
]
+
size
;
picture
->
data
[
2
]
=
picture
->
data
[
1
]
+
size
/
2
;
picture
->
linesize
[
0
]
=
width
;
picture
->
linesize
[
1
]
=
width
/
2
;
picture
->
linesize
[
2
]
=
width
/
2
;
break
;
case
PIX_FMT_YUV444P
:
picture
->
data
[
0
]
=
ptr
;
picture
->
data
[
1
]
=
picture
->
data
[
0
]
+
size
;
picture
->
data
[
2
]
=
picture
->
data
[
1
]
+
size
;
picture
->
linesize
[
0
]
=
width
;
picture
->
linesize
[
1
]
=
width
;
picture
->
linesize
[
2
]
=
width
;
break
;
case
PIX_FMT_RGB24
:
case
PIX_FMT_BGR24
:
picture
->
data
[
0
]
=
ptr
;
picture
->
data
[
1
]
=
NULL
;
picture
->
data
[
2
]
=
NULL
;
picture
->
linesize
[
0
]
=
width
*
3
;
break
;
case
PIX_FMT_RGBA32
:
picture
->
data
[
0
]
=
ptr
;
picture
->
data
[
1
]
=
NULL
;
picture
->
data
[
2
]
=
NULL
;
picture
->
linesize
[
0
]
=
width
*
4
;
break
;
case
PIX_FMT_YUV422
:
picture
->
data
[
0
]
=
ptr
;
picture
->
data
[
1
]
=
NULL
;
picture
->
data
[
2
]
=
NULL
;
picture
->
linesize
[
0
]
=
width
*
2
;
break
;
default:
picture
->
data
[
0
]
=
NULL
;
picture
->
data
[
1
]
=
NULL
;
picture
->
data
[
2
]
=
NULL
;
break
;
}
}
int
avpicture_get_size
(
int
pix_fmt
,
int
width
,
int
height
)
{
int
size
;
size
=
width
*
height
;
switch
(
pix_fmt
)
{
case
PIX_FMT_YUV420P
:
size
=
(
size
*
3
)
/
2
;
break
;
case
PIX_FMT_YUV422P
:
size
=
(
size
*
2
);
break
;
case
PIX_FMT_YUV444P
:
size
=
(
size
*
3
);
break
;
case
PIX_FMT_RGB24
:
case
PIX_FMT_BGR24
:
size
=
(
size
*
3
);
break
;
case
PIX_FMT_RGBA32
:
size
=
(
size
*
4
);
break
;
case
PIX_FMT_YUV422
:
size
=
(
size
*
2
);
break
;
default:
size
=
-
1
;
break
;
}
return
size
;
}
unsigned
avcodec_version
(
void
)
{
return
LIBAVCODEC_VERSION_INT
;
...
...
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