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
52ccf5a0
Commit
52ccf5a0
authored
Jan 20, 2005
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/mux/asf.c: another fix for WMA support.
parent
b4938f0e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
9 deletions
+15
-9
modules/mux/asf.c
modules/mux/asf.c
+15
-9
No files found.
modules/mux/asf.c
View file @
52ccf5a0
...
@@ -35,6 +35,7 @@
...
@@ -35,6 +35,7 @@
typedef
GUID
guid_t
;
typedef
GUID
guid_t
;
#define MAX_ASF_TRACKS 128
#define MAX_ASF_TRACKS 128
#define ASF_DATA_PACKET_SIZE 4096
/*****************************************************************************
/*****************************************************************************
* Module descriptor
* Module descriptor
...
@@ -206,7 +207,7 @@ static int Open( vlc_object_t *p_this )
...
@@ -206,7 +207,7 @@ static int Open( vlc_object_t *p_this )
p_sys
->
b_write_header
=
VLC_TRUE
;
p_sys
->
b_write_header
=
VLC_TRUE
;
p_sys
->
i_track
=
0
;
p_sys
->
i_track
=
0
;
p_sys
->
i_packet_size
=
4096
;
p_sys
->
i_packet_size
=
ASF_DATA_PACKET_SIZE
;
p_sys
->
i_packet_count
=
0
;
p_sys
->
i_packet_count
=
0
;
/* Generate a random fid */
/* Generate a random fid */
...
@@ -817,6 +818,9 @@ static block_t *asf_header_create( sout_mux_t *p_mux, vlc_bool_t b_broadcast )
...
@@ -817,6 +818,9 @@ static block_t *asf_header_create( sout_mux_t *p_mux, vlc_bool_t b_broadcast )
i_ci_size
+=
8
+
2
*
strlen
(
p_sys
->
track
[
i
].
psz_name
);
i_ci_size
+=
8
+
2
*
strlen
(
p_sys
->
track
[
i
].
psz_name
);
if
(
p_sys
->
track
[
i
].
i_cat
==
AUDIO_ES
)
i_ci_size
+=
4
;
if
(
p_sys
->
track
[
i
].
i_cat
==
AUDIO_ES
)
i_ci_size
+=
4
;
else
if
(
p_sys
->
track
[
i
].
i_cat
==
VIDEO_ES
)
i_ci_size
+=
6
;
else
if
(
p_sys
->
track
[
i
].
i_cat
==
VIDEO_ES
)
i_ci_size
+=
6
;
/* Error correction data field */
if
(
p_sys
->
track
[
i
].
b_audio_correction
)
i_size
+=
8
;
}
}
/* size of the content description object */
/* size of the content description object */
...
@@ -833,9 +837,6 @@ static block_t *asf_header_create( sout_mux_t *p_mux, vlc_bool_t b_broadcast )
...
@@ -833,9 +837,6 @@ static block_t *asf_header_create( sout_mux_t *p_mux, vlc_bool_t b_broadcast )
/* size of the metadata object */
/* size of the metadata object */
for
(
i
=
0
;
i
<
p_sys
->
i_track
;
i
++
)
for
(
i
=
0
;
i
<
p_sys
->
i_track
;
i
++
)
{
{
/* Error correction data field */
if
(
p_sys
->
track
[
i
].
b_audio_correction
)
i_size
+=
8
;
if
(
p_sys
->
track
[
i
].
i_cat
==
VIDEO_ES
)
if
(
p_sys
->
track
[
i
].
i_cat
==
VIDEO_ES
)
{
{
i_cm_size
=
26
+
2
*
(
16
+
2
*
sizeof
(
"AspectRatio?"
));
i_cm_size
=
26
+
2
*
(
16
+
2
*
sizeof
(
"AspectRatio?"
));
...
@@ -955,11 +956,7 @@ static block_t *asf_header_create( sout_mux_t *p_mux, vlc_bool_t b_broadcast )
...
@@ -955,11 +956,7 @@ static block_t *asf_header_create( sout_mux_t *p_mux, vlc_bool_t b_broadcast )
tk
=
&
p_sys
->
track
[
i
];
tk
=
&
p_sys
->
track
[
i
];
bo_add_guid
(
&
bo
,
&
asf_object_stream_properties_guid
);
bo_add_guid
(
&
bo
,
&
asf_object_stream_properties_guid
);
bo_addle_u64
(
&
bo
,
78
+
tk
->
i_extra
+
(
tk
->
b_audio_correction
?
8
:
0
)
);
if
(
tk
->
b_audio_correction
)
/* Error correction data field */
bo_addle_u64
(
&
bo
,
78
+
tk
->
i_extra
+
8
);
else
bo_addle_u64
(
&
bo
,
78
+
tk
->
i_extra
);
if
(
tk
->
i_cat
==
AUDIO_ES
)
if
(
tk
->
i_cat
==
AUDIO_ES
)
{
{
...
@@ -1099,6 +1096,15 @@ static block_t *asf_packet_create( sout_mux_t *p_mux,
...
@@ -1099,6 +1096,15 @@ static block_t *asf_packet_create( sout_mux_t *p_mux,
/* add payload (header size = 17) */
/* add payload (header size = 17) */
i_payload
=
__MIN
(
i_data
-
i_pos
,
i_payload
=
__MIN
(
i_data
-
i_pos
,
p_sys
->
i_packet_size
-
p_sys
->
i_pk_used
-
17
);
p_sys
->
i_packet_size
-
p_sys
->
i_pk_used
-
17
);
if
(
tk
->
b_audio_correction
&&
p_sys
->
i_pk_frame
&&
i_payload
<
i_data
)
{
/* Don't know why yet but WMP doesn't like splitted WMA packets */
*
last
=
asf_packet_flush
(
p_mux
);
last
=
&
(
*
last
)
->
p_next
;
continue
;
}
bo_add_u8
(
&
bo
,
!
(
data
->
i_flags
&
BLOCK_FLAG_TYPE_P
||
bo_add_u8
(
&
bo
,
!
(
data
->
i_flags
&
BLOCK_FLAG_TYPE_P
||
data
->
i_flags
&
BLOCK_FLAG_TYPE_B
)
?
data
->
i_flags
&
BLOCK_FLAG_TYPE_B
)
?
0x80
|
tk
->
i_id
:
tk
->
i_id
);
0x80
|
tk
->
i_id
:
tk
->
i_id
);
...
...
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