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
541bebd4
Commit
541bebd4
authored
Apr 06, 2014
by
Stephan Hilb
Committed by
Michael Niedermayer
Apr 06, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/cpia: use avpriv_report_missing_feature()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
5dae3cf3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
cpia.c
libavcodec/cpia.c
+3
-3
No files found.
libavcodec/cpia.c
View file @
541bebd4
...
@@ -76,15 +76,15 @@ static int cpia_decode_frame(AVCodecContext *avctx,
...
@@ -76,15 +76,15 @@ static int cpia_decode_frame(AVCodecContext *avctx,
// currently unsupported properties
// currently unsupported properties
if
(
header
[
17
]
==
SUBSAMPLE_422
)
{
if
(
header
[
17
]
==
SUBSAMPLE_422
)
{
av
_log
(
avctx
,
AV_LOG_ERROR
,
"Unsupported subsample!
\n
"
);
av
priv_report_missing_feature
(
avctx
,
"4:2:2 subsampling
"
);
return
AVERROR_PATCHWELCOME
;
return
AVERROR_PATCHWELCOME
;
}
}
if
(
header
[
18
]
==
YUVORDER_UYVY
)
{
if
(
header
[
18
]
==
YUVORDER_UYVY
)
{
av
_log
(
avctx
,
AV_LOG_ERROR
,
"Unsupported YUV byte order!
\n
"
);
av
priv_report_missing_feature
(
avctx
,
"YUV byte order UYVY
"
);
return
AVERROR_PATCHWELCOME
;
return
AVERROR_PATCHWELCOME
;
}
}
if
(
header
[
29
]
==
DECIMATION_ENAB
)
{
if
(
header
[
29
]
==
DECIMATION_ENAB
)
{
av
_log
(
avctx
,
AV_LOG_ERROR
,
"Decimation unsupported!
\
n
"
);
av
priv_report_missing_feature
(
avctx
,
"Decimatio
n"
);
return
AVERROR_PATCHWELCOME
;
return
AVERROR_PATCHWELCOME
;
}
}
...
...
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