Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
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