Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
d1ff1b96
Commit
d1ff1b96
authored
Aug 26, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* transcode: use mp1v/mpgv for mpeg1 and mp2v for mpeg2 video encoding.
(mpeg2 encoding has been added to vlc)
parent
73fadf61
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
modules/stream_out/transcode.c
modules/stream_out/transcode.c
+12
-2
No files found.
modules/stream_out/transcode.c
View file @
d1ff1b96
...
...
@@ -2,7 +2,7 @@
* transcode.c
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: transcode.c,v 1.3
0 2003/08/11 20:48:19 gbazin
Exp $
* $Id: transcode.c,v 1.3
1 2003/08/26 18:01:16 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -536,8 +536,12 @@ static struct
{
VLC_FOURCC
(
'a'
,
'l'
,
'a'
,
'w'
),
CODEC_ID_PCM_ALAW
},
/* video */
{
VLC_FOURCC
(
'm'
,
'p'
,
'4'
,
'v'
),
CODEC_ID_MPEG4
},
{
VLC_FOURCC
(
'm'
,
'p'
,
'g'
,
'v'
),
CODEC_ID_MPEG1VIDEO
},
{
VLC_FOURCC
(
'm'
,
'p'
,
'1'
,
'v'
),
CODEC_ID_MPEG1VIDEO
},
#if LIBAVCODEC_BUILD >= 4676
{
VLC_FOURCC
(
'm'
,
'p'
,
'2'
,
'v'
),
CODEC_ID_MPEG2VIDEO
},
#endif
{
VLC_FOURCC
(
'm'
,
'p'
,
'4'
,
'v'
),
CODEC_ID_MPEG4
},
{
VLC_FOURCC
(
'D'
,
'I'
,
'V'
,
'1'
),
CODEC_ID_MSMPEG4V1
},
{
VLC_FOURCC
(
'D'
,
'I'
,
'V'
,
'2'
),
CODEC_ID_MSMPEG4V2
},
{
VLC_FOURCC
(
'D'
,
'I'
,
'V'
,
'3'
),
CODEC_ID_MSMPEG4V3
},
...
...
@@ -1215,6 +1219,12 @@ static int transcode_video_ffmpeg_new( sout_stream_t *p_stream,
return
VLC_EGENERIC
;
}
if
(
id
->
f_dst
.
i_fourcc
==
VLC_FOURCC
(
'm'
,
'p'
,
'1'
,
'v'
)
||
id
->
f_dst
.
i_fourcc
==
VLC_FOURCC
(
'm'
,
'p'
,
'2'
,
'v'
)
)
{
id
->
f_dst
.
i_fourcc
=
VLC_FOURCC
(
'm'
,
'p'
,
'g'
,
'v'
);
}
id
->
ff_enc_c
=
avcodec_alloc_context
();
id
->
ff_enc_c
->
width
=
id
->
f_dst
.
i_width
;
id
->
ff_enc_c
->
height
=
id
->
f_dst
.
i_height
;
...
...
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