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
78b4bfdb
Commit
78b4bfdb
authored
Jul 29, 2013
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace remaining obsolete PIX_FMT names with AV_PIX_FMT equivalents
parent
1f57d601
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
escape130.c
libavcodec/escape130.c
+1
-1
g2meet.c
libavcodec/g2meet.c
+1
-1
pixdesc.c
libavutil/pixdesc.c
+1
-1
No files found.
libavcodec/escape130.c
View file @
78b4bfdb
...
@@ -115,7 +115,7 @@ const uint8_t chroma_vals[] = {
...
@@ -115,7 +115,7 @@ const uint8_t chroma_vals[] = {
static
av_cold
int
escape130_decode_init
(
AVCodecContext
*
avctx
)
static
av_cold
int
escape130_decode_init
(
AVCodecContext
*
avctx
)
{
{
Escape130Context
*
s
=
avctx
->
priv_data
;
Escape130Context
*
s
=
avctx
->
priv_data
;
avctx
->
pix_fmt
=
PIX_FMT_YUV420P
;
avctx
->
pix_fmt
=
AV_
PIX_FMT_YUV420P
;
if
((
avctx
->
width
&
1
)
||
(
avctx
->
height
&
1
))
{
if
((
avctx
->
width
&
1
)
||
(
avctx
->
height
&
1
))
{
av_log
(
avctx
,
AV_LOG_ERROR
,
av_log
(
avctx
,
AV_LOG_ERROR
,
...
...
libavcodec/g2meet.c
View file @
78b4bfdb
...
@@ -835,7 +835,7 @@ static av_cold int g2m_decode_init(AVCodecContext *avctx)
...
@@ -835,7 +835,7 @@ static av_cold int g2m_decode_init(AVCodecContext *avctx)
return
AVERROR
(
ENOMEM
);
return
AVERROR
(
ENOMEM
);
}
}
avctx
->
pix_fmt
=
PIX_FMT_RGB24
;
avctx
->
pix_fmt
=
AV_
PIX_FMT_RGB24
;
return
0
;
return
0
;
}
}
...
...
libavutil/pixdesc.c
View file @
78b4bfdb
...
@@ -231,7 +231,7 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = {
...
@@ -231,7 +231,7 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = {
.
comp
=
{
.
comp
=
{
{
0
,
0
,
1
,
0
,
7
},
/* Y */
{
0
,
0
,
1
,
0
,
7
},
/* Y */
},
},
.
flags
=
PIX_FMT
_PSEUDOPAL
,
.
flags
=
AV_PIX_FMT_FLAG
_PSEUDOPAL
,
},
},
[
AV_PIX_FMT_MONOWHITE
]
=
{
[
AV_PIX_FMT_MONOWHITE
]
=
{
.
name
=
"monow"
,
.
name
=
"monow"
,
...
...
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