Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
4fbbd7cd
Commit
4fbbd7cd
authored
May 30, 2012
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed the value of DV_NTSC_FRAME_SIZE.
parent
c3f877ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
modules/demux/rawdv.c
modules/demux/rawdv.c
+4
-3
No files found.
modules/demux/rawdv.c
View file @
4fbbd7cd
...
...
@@ -74,8 +74,8 @@ vlc_module_end ()
/*****************************************************************************
* Constants
*****************************************************************************/
#define DV_PAL_FRAME_SIZE
144000
#define DV_NTSC_FRAME_SIZE
122000
#define DV_PAL_FRAME_SIZE
(12 * 150 * 80)
#define DV_NTSC_FRAME_SIZE
(10 * 150 * 80)
/*****************************************************************************
* Definitions of structures used by this plugin
...
...
@@ -213,7 +213,8 @@ static int Open( vlc_object_t * p_this )
msg_Dbg
(
p_demux
,
"Realtime DV Source: %s"
,
(
p_sys
->
b_hurry_up
)
?
"Yes"
:
"No"
);
p_sys
->
i_dsf
=
dv_header
.
dsf
;
p_sys
->
frame_size
=
dv_header
.
dsf
?
12
*
150
*
80
:
10
*
150
*
80
;
p_sys
->
frame_size
=
dv_header
.
dsf
?
DV_PAL_FRAME_SIZE
:
DV_NTSC_FRAME_SIZE
;
p_sys
->
f_rate
=
dv_header
.
dsf
?
25
:
29
.
97
;
p_sys
->
i_pcr
=
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