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
3160bdc7
Commit
3160bdc7
authored
Aug 03, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
huffyuv: Use avpriv_report_missing_feature() where appropriate
parent
b7616f57
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
huffyuvdec.c
libavcodec/huffyuvdec.c
+4
-6
No files found.
libavcodec/huffyuvdec.c
View file @
3160bdc7
...
...
@@ -530,9 +530,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
p
->
data
[
0
][
1
]
=
get_bits
(
&
s
->
gb
,
8
);
p
->
data
[
0
][
0
]
=
get_bits
(
&
s
->
gb
,
8
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"YUY2 output is not implemented yet
\n
"
);
return
-
1
;
avpriv_report_missing_feature
(
avctx
,
"YUY2 output"
);
return
AVERROR_PATCHWELCOME
;
}
else
{
leftv
=
p
->
data
[
2
][
0
]
=
get_bits
(
&
s
->
gb
,
8
);
...
...
@@ -735,9 +734,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
"prediction type not supported!
\n
"
);
}
}
else
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"BGR24 output is not implemented yet
\n
"
);
return
-
1
;
avpriv_report_missing_feature
(
avctx
,
"BGR24 output"
);
return
AVERROR_PATCHWELCOME
;
}
}
emms_c
();
...
...
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