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
b1b1a737
Commit
b1b1a737
authored
Nov 11, 2014
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
display: fix order of operands
CC: libav-stable@libav.org Bug-Id: CID 1238828 / CID 1238832
parent
bdcb5794
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
h264.c
libavcodec/h264.c
+1
-1
hevc.c
libavcodec/hevc.c
+1
-1
No files found.
libavcodec/h264.c
View file @
b1b1a737
...
@@ -837,7 +837,7 @@ static void decode_postinit(H264Context *h, int setup_finished)
...
@@ -837,7 +837,7 @@ static void decode_postinit(H264Context *h, int setup_finished)
av_display_rotation_set
((
int32_t
*
)
rotation
->
data
,
angle
);
av_display_rotation_set
((
int32_t
*
)
rotation
->
data
,
angle
);
av_display_matrix_flip
((
int32_t
*
)
rotation
->
data
,
av_display_matrix_flip
((
int32_t
*
)
rotation
->
data
,
h
->
sei_
vflip
,
h
->
sei_h
flip
);
h
->
sei_
hflip
,
h
->
sei_v
flip
);
}
}
// FIXME do something with unavailable reference frames
// FIXME do something with unavailable reference frames
...
...
libavcodec/hevc.c
View file @
b1b1a737
...
@@ -2434,7 +2434,7 @@ static int set_side_data(HEVCContext *s)
...
@@ -2434,7 +2434,7 @@ static int set_side_data(HEVCContext *s)
av_display_rotation_set
((
int32_t
*
)
rotation
->
data
,
angle
);
av_display_rotation_set
((
int32_t
*
)
rotation
->
data
,
angle
);
av_display_matrix_flip
((
int32_t
*
)
rotation
->
data
,
av_display_matrix_flip
((
int32_t
*
)
rotation
->
data
,
s
->
sei_
vflip
,
s
->
sei_h
flip
);
s
->
sei_
hflip
,
s
->
sei_v
flip
);
}
}
return
0
;
return
0
;
...
...
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