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
f76e3669
Commit
f76e3669
authored
May 29, 2014
by
Dirk Ausserhaus
Committed by
Kostya Shishkov
Jun 01, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Decode both parts of Indeo4 IP frames
Signed-off-by:
Kostya Shishkov
<
kostya.shishkov@gmail.com
>
parent
3df0d200
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
42 additions
and
13 deletions
+42
-13
indeo4.c
libavcodec/indeo4.c
+4
-0
ivi_common.c
libavcodec/ivi_common.c
+35
-13
ivi_common.h
libavcodec/ivi_common.h
+3
-0
No files found.
libavcodec/indeo4.c
View file @
f76e3669
...
@@ -620,6 +620,10 @@ static av_cold int decode_init(AVCodecContext *avctx)
...
@@ -620,6 +620,10 @@ static av_cold int decode_init(AVCodecContext *avctx)
ctx
->
switch_buffers
=
switch_buffers
;
ctx
->
switch_buffers
=
switch_buffers
;
ctx
->
is_nonnull_frame
=
is_nonnull_frame
;
ctx
->
is_nonnull_frame
=
is_nonnull_frame
;
ctx
->
p_frame
=
av_frame_alloc
();
if
(
!
ctx
->
p_frame
)
return
AVERROR
(
ENOMEM
);
return
0
;
return
0
;
}
}
...
...
libavcodec/ivi_common.c
View file @
f76e3669
...
@@ -968,6 +968,18 @@ int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
...
@@ -968,6 +968,18 @@ int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
if
(
ctx
->
gop_invalid
)
if
(
ctx
->
gop_invalid
)
return
AVERROR_INVALIDDATA
;
return
AVERROR_INVALIDDATA
;
if
(
avctx
->
codec_id
==
AV_CODEC_ID_INDEO4
&&
ctx
->
frame_type
==
IVI4_FRAMETYPE_NULL_LAST
)
{
if
(
ctx
->
got_p_frame
)
{
av_frame_move_ref
(
data
,
ctx
->
p_frame
);
*
got_frame
=
1
;
ctx
->
got_p_frame
=
0
;
}
else
{
*
got_frame
=
0
;
}
return
buf_size
;
}
if
(
ctx
->
gop_flags
&
IVI5_IS_PROTECTED
)
{
if
(
ctx
->
gop_flags
&
IVI5_IS_PROTECTED
)
{
avpriv_report_missing_feature
(
avctx
,
"Password-protected clip!
\n
"
);
avpriv_report_missing_feature
(
avctx
,
"Password-protected clip!
\n
"
);
return
AVERROR_PATCHWELCOME
;
return
AVERROR_PATCHWELCOME
;
...
@@ -1005,19 +1017,6 @@ int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
...
@@ -1005,19 +1017,6 @@ int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
//STOP_TIMER("decode_planes"); }
//STOP_TIMER("decode_planes"); }
/* If the bidirectional mode is enabled, next I and the following P
* frame will be sent together. Unfortunately the approach below seems
* to be the only way to handle the B-frames mode.
* That's exactly the same Intel decoders do.
*/
if
(
avctx
->
codec_id
==
AV_CODEC_ID_INDEO4
&&
ctx
->
frame_type
==
IVI4_FRAMETYPE_INTRA
)
{
while
(
get_bits
(
&
ctx
->
gb
,
8
));
// skip version string
skip_bits_long
(
&
ctx
->
gb
,
64
);
// skip padding, TODO: implement correct 8-bytes alignment
if
(
get_bits_left
(
&
ctx
->
gb
)
>
18
&&
show_bits
(
&
ctx
->
gb
,
18
)
==
0x3FFF8
)
av_log
(
avctx
,
AV_LOG_ERROR
,
"Buffer contains IP frames!
\n
"
);
}
result
=
ff_set_dimensions
(
avctx
,
ctx
->
planes
[
0
].
width
,
ctx
->
planes
[
0
].
height
);
result
=
ff_set_dimensions
(
avctx
,
ctx
->
planes
[
0
].
width
,
ctx
->
planes
[
0
].
height
);
if
(
result
<
0
)
if
(
result
<
0
)
return
result
;
return
result
;
...
@@ -1041,6 +1040,27 @@ int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
...
@@ -1041,6 +1040,27 @@ int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
*
got_frame
=
1
;
*
got_frame
=
1
;
/* If the bidirectional mode is enabled, next I and the following P
* frame will be sent together. Unfortunately the approach below seems
* to be the only way to handle the B-frames mode.
* That's exactly the same Intel decoders do.
*/
if
(
avctx
->
codec_id
==
AV_CODEC_ID_INDEO4
&&
ctx
->
frame_type
==
IVI4_FRAMETYPE_INTRA
)
{
int
left
;
while
(
get_bits
(
&
ctx
->
gb
,
8
));
// skip version string
left
=
get_bits_count
(
&
ctx
->
gb
)
&
0x18
;
skip_bits_long
(
&
ctx
->
gb
,
64
-
left
);
if
(
get_bits_left
(
&
ctx
->
gb
)
>
18
&&
show_bits_long
(
&
ctx
->
gb
,
21
)
==
0xBFFF8
)
{
// syncheader + inter type
AVPacket
pkt
;
pkt
.
data
=
avpkt
->
data
+
(
get_bits_count
(
&
ctx
->
gb
)
>>
3
);
pkt
.
size
=
get_bits_left
(
&
ctx
->
gb
)
>>
3
;
ff_ivi_decode_frame
(
avctx
,
ctx
->
p_frame
,
&
ctx
->
got_p_frame
,
&
pkt
);
}
}
return
buf_size
;
return
buf_size
;
}
}
...
@@ -1073,6 +1093,8 @@ av_cold int ff_ivi_decode_close(AVCodecContext *avctx)
...
@@ -1073,6 +1093,8 @@ av_cold int ff_ivi_decode_close(AVCodecContext *avctx)
}
}
#endif
#endif
av_frame_free
(
&
ctx
->
p_frame
);
return
0
;
return
0
;
}
}
...
...
libavcodec/ivi_common.h
View file @
f76e3669
...
@@ -260,6 +260,9 @@ typedef struct IVI45DecContext {
...
@@ -260,6 +260,9 @@ typedef struct IVI45DecContext {
int
(
*
is_nonnull_frame
)(
struct
IVI45DecContext
*
ctx
);
int
(
*
is_nonnull_frame
)(
struct
IVI45DecContext
*
ctx
);
int
gop_invalid
;
int
gop_invalid
;
AVFrame
*
p_frame
;
int
got_p_frame
;
}
IVI45DecContext
;
}
IVI45DecContext
;
/** compare some properties of two pictures */
/** compare some properties of two pictures */
...
...
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