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
d1196f96
Commit
d1196f96
authored
Apr 29, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
all: use /* */ instead of // (we write c code)
parent
bb036be6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
19 deletions
+19
-19
modules/stream_out/display.c
modules/stream_out/display.c
+2
-2
modules/stream_out/es.c
modules/stream_out/es.c
+2
-2
modules/stream_out/transcode.c
modules/stream_out/transcode.c
+15
-15
No files found.
modules/stream_out/display.c
View file @
d1196f96
...
...
@@ -2,7 +2,7 @@
* display.c
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: display.c,v 1.
2 2003/04/14 02:26:49
fenrir Exp $
* $Id: display.c,v 1.
3 2003/04/29 22:44:08
fenrir Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -153,7 +153,7 @@ static sout_stream_id_t * Add ( sout_stream_t *p_stream, sout_format_t *p_f
return
NULL
;
}
id
->
p_es
->
i_stream_id
=
1
;
id
->
p_es
->
i_cat
=
UNKNOWN_ES
;
/
/p_fmt->i_cat;
id
->
p_es
->
i_cat
=
UNKNOWN_ES
;
/
* p_fmt->i_cat; */
id
->
p_es
->
i_fourcc
=
p_fmt
->
i_fourcc
;
id
->
p_es
->
b_force_decoder
=
VLC_TRUE
;
switch
(
p_fmt
->
i_cat
)
...
...
modules/stream_out/es.c
View file @
d1196f96
...
...
@@ -2,7 +2,7 @@
* es.c
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: es.c,v 1.
1 2003/04/13 20:00:21
fenrir Exp $
* $Id: es.c,v 1.
2 2003/04/29 22:44:08
fenrir Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -80,7 +80,7 @@ static int Open( vlc_object_t *p_this )
sout_stream_t
*
p_stream
=
(
sout_stream_t
*
)
p_this
;
sout_stream_sys_t
*
p_sys
;
/
/p_sout->i_preheader = __MAX( p_sout->i_preheader, p_mux->i_preheader );
/
* p_sout->i_preheader = __MAX( p_sout->i_preheader, p_mux->i_preheader ); */
p_sys
=
malloc
(
sizeof
(
sout_stream_sys_t
)
);
...
...
modules/stream_out/transcode.c
View file @
d1196f96
...
...
@@ -2,7 +2,7 @@
* transcode.c
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: transcode.c,v 1.
4 2003/04/20 11:57:13 gbazin
Exp $
* $Id: transcode.c,v 1.
5 2003/04/29 22:44:08 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -70,12 +70,12 @@ struct sout_stream_sys_t
{
sout_stream_t
*
p_out
;
vlc_fourcc_t
i_acodec
;
/
/ codec audio (0 if not transcode)
vlc_fourcc_t
i_acodec
;
/
* codec audio (0 if not transcode) */
int
i_sample_rate
;
int
i_channels
;
int
i_abitrate
;
vlc_fourcc_t
i_vcodec
;
/
/ " video " " " "
vlc_fourcc_t
i_vcodec
;
/
* " video " " " " */
int
i_vbitrate
;
int
i_width
;
int
i_height
;
...
...
@@ -226,8 +226,8 @@ static void Close( vlc_object_t * p_this )
struct
sout_stream_id_t
{
vlc_fourcc_t
b_transcode
;
sout_format_t
f_src
;
/
/ only if transcoding
sout_format_t
f_dst
;
/
/ " " "
sout_format_t
f_src
;
/
* only if transcoding */
sout_format_t
f_dst
;
/
* " " " */
/* id of the out stream */
void
*
id
;
...
...
@@ -257,9 +257,9 @@ struct sout_stream_id_t
uint8_t
*
p_buffer_out
;
AVFrame
*
p_ff_pic
;
AVFrame
*
p_ff_pic_tmp0
;
/
/ to do deinterlace
AVFrame
*
p_ff_pic_tmp1
;
/
/ to do pix conversion
AVFrame
*
p_ff_pic_tmp2
;
/
/ to do resample
AVFrame
*
p_ff_pic_tmp0
;
/
* to do deinterlace */
AVFrame
*
p_ff_pic_tmp1
;
/
* to do pix conversion */
AVFrame
*
p_ff_pic_tmp2
;
/
* to do resample */
ImgReSampleContext
*
p_vresample
;
};
...
...
@@ -316,8 +316,8 @@ static sout_stream_id_t * Add ( sout_stream_t *p_stream, sout_format_t *p_f
/* create dst format */
id
->
f_dst
.
i_cat
=
VIDEO_ES
;
id
->
f_dst
.
i_fourcc
=
p_sys
->
i_vcodec
;
id
->
f_dst
.
i_width
=
p_sys
->
i_width
;
/
/> 0 ? p_sys->i_width : id->f_src.i_width;
id
->
f_dst
.
i_height
=
p_sys
->
i_height
;
/
/ > 0 ? p_sys->i_height: id->f_src.i_height;
id
->
f_dst
.
i_width
=
p_sys
->
i_width
;
/
* > 0 ? p_sys->i_width : id->f_src.i_width; */
id
->
f_dst
.
i_height
=
p_sys
->
i_height
;
/
* > 0 ? p_sys->i_height: id->f_src.i_height; */
id
->
f_dst
.
i_bitrate
=
p_sys
->
i_vbitrate
>
0
?
p_sys
->
i_vbitrate
:
800
*
1000
;
id
->
f_dst
.
i_extra_data
=
0
;
id
->
f_dst
.
p_extra_data
=
NULL
;
...
...
@@ -566,7 +566,7 @@ static int transcode_audio_ffmpeg_process( sout_stream_t *p_stream, sout_stream_
(
int16_t
*
)
&
id
->
p_buffer
[
id
->
i_buffer_pos
],
&
i_buffer_size
,
id
->
p_buffer_in
,
id
->
i_buffer_in_pos
);
/
/msg_Warn( p_stream, "avcodec_decode_audio: %d used", i_used );
/
* msg_Warn( p_stream, "avcodec_decode_audio: %d used", i_used ); */
id
->
i_buffer_pos
+=
i_buffer_size
;
if
(
i_used
<
0
)
...
...
@@ -601,7 +601,7 @@ static int transcode_audio_ffmpeg_process( sout_stream_t *p_stream, sout_stream_
break
;
}
/
/msg_Warn( p_stream, "avcodec_encode_audio: frame size%d", i_frame_size);
/
* msg_Warn( p_stream, "avcodec_encode_audio: frame size%d", i_frame_size); */
i_out_size
=
avcodec_encode_audio
(
id
->
ff_enc_c
,
id
->
p_buffer_out
,
id
->
i_buffer_out
,
(
int16_t
*
)
id
->
p_buffer
);
...
...
@@ -626,7 +626,7 @@ static int transcode_audio_ffmpeg_process( sout_stream_t *p_stream, sout_stream_
/* update dts */
id
->
i_dts
+=
p_out
->
i_length
;
/
/msg_Warn( p_stream, "frame dts=%lld len %lld out=%d", p_out->i_dts, p_out->i_length, i_out_size );
/
* msg_Warn( p_stream, "frame dts=%lld len %lld out=%d", p_out->i_dts, p_out->i_length, i_out_size ); */
sout_BufferChain
(
out
,
p_out
);
}
...
...
@@ -659,7 +659,7 @@ static int transcode_video_ffmpeg_new ( sout_stream_t *p_stream, sout_stream_i
id
->
ff_dec_c
=
avcodec_alloc_context
();
id
->
ff_dec_c
->
width
=
id
->
f_src
.
i_width
;
id
->
ff_dec_c
->
height
=
id
->
f_src
.
i_height
;
/
/id->ff_dec_c->bit_rate = id->f_src.i_bitrate;
/
* id->ff_dec_c->bit_rate = id->f_src.i_bitrate; */
id
->
ff_dec_c
->
extradata_size
=
id
->
f_src
.
i_extra_data
;
id
->
ff_dec_c
->
extradata
=
id
->
f_src
.
p_extra_data
;
id
->
ff_dec_c
->
workaround_bugs
=
FF_BUG_AUTODETECT
;
...
...
@@ -706,7 +706,7 @@ static int transcode_video_ffmpeg_new ( sout_stream_t *p_stream, sout_stream_i
id
->
ff_enc_c
->
height
=
id
->
f_dst
.
i_height
;
id
->
ff_enc_c
->
bit_rate
=
id
->
f_dst
.
i_bitrate
;
#if LIBAVCODEC_BUILD >= 4662
id
->
ff_enc_c
->
frame_rate
=
25
;
/
/ FIXME as it break mpeg
id
->
ff_enc_c
->
frame_rate
=
25
;
/
* FIXME as it break mpeg */
id
->
ff_enc_c
->
frame_rate_base
=
1
;
#else
id
->
ff_enc_c
->
frame_rate
=
25
*
FRAME_RATE_BASE
;
...
...
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