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
3a1aaf7b
Commit
3a1aaf7b
authored
Jun 07, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffplay: Fix -vismv
Fixes Ticket164 Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
a39bd458
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
ffplay.c
ffplay.c
+1
-1
mpegvideo.c
libavcodec/mpegvideo.c
+1
-0
No files found.
ffplay.c
View file @
3a1aaf7b
...
...
@@ -1622,7 +1622,7 @@ static int input_request_frame(AVFilterLink *link)
if
(
ret
<
0
)
return
-
1
;
if
(
priv
->
use_dr1
)
{
if
(
priv
->
use_dr1
&&
priv
->
frame
->
opaque
)
{
picref
=
avfilter_ref_buffer
(
priv
->
frame
->
opaque
,
~
0
);
}
else
{
picref
=
avfilter_get_video_buffer
(
link
,
AV_PERM_WRITE
,
link
->
w
,
link
->
h
);
...
...
libavcodec/mpegvideo.c
View file @
3a1aaf7b
...
...
@@ -1410,6 +1410,7 @@ void ff_print_debug_info(MpegEncContext *s, AVFrame *pict){
pict
->
data
[
i
]
=
s
->
visualization_buffer
[
i
];
}
pict
->
type
=
FF_BUFFER_TYPE_COPY
;
pict
->
opaque
=
NULL
;
ptr
=
pict
->
data
[
0
];
block_height
=
16
>>
v_chroma_shift
;
...
...
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