Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
818cd43f
Commit
818cd43f
authored
Mar 09, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: drop deprecated qscale_type
(This datum was only used by postproc anyway.)
parent
41e9bfae
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
12 deletions
+0
-12
modules/codec/avcodec/video.c
modules/codec/avcodec/video.c
+0
-12
No files found.
modules/codec/avcodec/video.c
View file @
818cd43f
...
...
@@ -737,18 +737,6 @@ picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
p_pic
->
p_q
=
malloc
(
p_pic
->
i_qstride
*
i_mb_h
);
memcpy
(
p_pic
->
p_q
,
p_sys
->
p_ff_pic
->
qscale_table
,
p_pic
->
i_qstride
*
i_mb_h
);
switch
(
p_sys
->
p_ff_pic
->
qscale_type
)
{
case
FF_QSCALE_TYPE_MPEG1
:
p_pic
->
i_qtype
=
QTYPE_MPEG1
;
break
;
case
FF_QSCALE_TYPE_MPEG2
:
p_pic
->
i_qtype
=
QTYPE_MPEG2
;
break
;
case
FF_QSCALE_TYPE_H264
:
p_pic
->
i_qtype
=
QTYPE_H264
;
break
;
}
return
p_pic
;
}
...
...
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