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
96747e6c
Commit
96747e6c
authored
Jul 11, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mjpegdec: parse app-xfrm
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
7afa68d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
mjpegdec.c
libavcodec/mjpegdec.c
+7
-0
mjpegdec.h
libavcodec/mjpegdec.h
+1
-0
No files found.
libavcodec/mjpegdec.c
View file @
96747e6c
...
...
@@ -1469,6 +1469,13 @@ static int mjpeg_decode_app(MJpegDecodeContext *s)
len
--
;
goto
out
;
}
if
(
id
==
AV_RL32
(
"xfrm"
)
&&
len
>
0
)
{
s
->
xfrm
=
get_bits
(
&
s
->
gb
,
8
);
if
(
s
->
avctx
->
debug
&
FF_DEBUG_PICT_INFO
)
av_log
(
s
->
avctx
,
AV_LOG_INFO
,
"XFRM %d
\n
"
,
s
->
xfrm
);
len
--
;
goto
out
;
}
/* Apple MJPEG-A */
if
((
s
->
start_code
==
APP1
)
&&
(
len
>
(
0x28
-
8
)))
{
...
...
libavcodec/mjpegdec.h
View file @
96747e6c
...
...
@@ -66,6 +66,7 @@ typedef struct MJpegDecodeContext {
int
pegasus_rct
;
/* pegasus reversible colorspace transform */
int
bits
;
/* bits per component */
int
colr
;
int
xfrm
;
int
maxval
;
int
near
;
///< near lossless bound (si 0 for lossless)
...
...
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