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
f3d02a8b
Commit
f3d02a8b
authored
Jan 12, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc: replace some remaining FF_I_TYPE with AV_PICTURE_TYPE_I
parent
a29c25a9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
v410dec.c
libavcodec/v410dec.c
+1
-1
v410enc.c
libavcodec/v410enc.c
+1
-1
vble.c
libavcodec/vble.c
+1
-1
No files found.
libavcodec/v410dec.c
View file @
f3d02a8b
...
...
@@ -68,7 +68,7 @@ static int v410_decode_frame(AVCodecContext *avctx, void *data,
}
pic
->
key_frame
=
1
;
pic
->
pict_type
=
FF_I_TYPE
;
pic
->
pict_type
=
AV_PICTURE_TYPE_I
;
y
=
(
uint16_t
*
)
pic
->
data
[
0
];
u
=
(
uint16_t
*
)
pic
->
data
[
1
];
...
...
libavcodec/v410enc.c
View file @
f3d02a8b
...
...
@@ -57,7 +57,7 @@ static int v410_encode_frame(AVCodecContext *avctx, uint8_t *buf,
avctx
->
coded_frame
->
reference
=
0
;
avctx
->
coded_frame
->
key_frame
=
1
;
avctx
->
coded_frame
->
pict_type
=
FF_I_TYPE
;
avctx
->
coded_frame
->
pict_type
=
AV_PICTURE_TYPE_I
;
y
=
(
uint16_t
*
)
pic
->
data
[
0
];
u
=
(
uint16_t
*
)
pic
->
data
[
1
];
...
...
libavcodec/vble.c
View file @
f3d02a8b
...
...
@@ -135,7 +135,7 @@ static int vble_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
/* Set flags */
pic
->
key_frame
=
1
;
pic
->
pict_type
=
FF_I_TYPE
;
pic
->
pict_type
=
AV_PICTURE_TYPE_I
;
/* Version should always be 1 */
version
=
AV_RL32
(
src
);
...
...
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