Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
43ff738b
Commit
43ff738b
authored
Feb 17, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added QTYPE_NONE to easily detect if qp are present (vout).
parent
016c159e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
include/vlc_vout.h
include/vlc_vout.h
+2
-0
src/video_output/vout_pictures.c
src/video_output/vout_pictures.c
+2
-2
No files found.
include/vlc_vout.h
View file @
43ff738b
...
...
@@ -266,6 +266,8 @@ enum
/* Quantification type */
enum
{
QTYPE_NONE
,
QTYPE_MPEG1
,
QTYPE_MPEG2
,
QTYPE_H264
,
...
...
src/video_output/vout_pictures.c
View file @
43ff738b
...
...
@@ -710,9 +710,9 @@ int __vout_InitPicture( vlc_object_t *p_this, picture_t *p_pic,
p_pic
->
pf_unlock
=
NULL
;
p_pic
->
i_refcount
=
0
;
p_pic
->
p_q
=
NULL
;
p_pic
->
i_qtype
=
QTYPE_NONE
;
p_pic
->
i_qstride
=
0
;
p_pic
->
i_qtype
=
0
;
p_pic
->
p_q
=
NULL
;
vout_InitFormat
(
&
p_pic
->
format
,
i_chroma
,
i_width
,
i_height
,
i_aspect
);
...
...
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