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
04870f7c
Commit
04870f7c
authored
Aug 09, 2006
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix comments
parent
25ee96d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
modules/codec/ffmpeg/encoder.c
modules/codec/ffmpeg/encoder.c
+2
-3
No files found.
modules/codec/ffmpeg/encoder.c
View file @
04870f7c
...
...
@@ -221,7 +221,6 @@ int E_(OpenEncoder)( vlc_object_t *p_this )
psz_namecodec
=
"Raw video"
;
}
if
(
p_enc
->
fmt_out
.
i_cat
==
VIDEO_ES
&&
i_cat
!=
VIDEO_ES
)
{
msg_Err
(
p_enc
,
"
\"
%s
\"
is not a video encoder"
,
psz_namecodec
);
...
...
@@ -234,7 +233,7 @@ int E_(OpenEncoder)( vlc_object_t *p_this )
return
VLC_EGENERIC
;
}
/* Initialization must be done before avcodec_find_
de
coder() */
/* Initialization must be done before avcodec_find_
en
coder() */
E_
(
InitLibavcodec
)(
p_this
);
p_codec
=
avcodec_find_encoder
(
i_codec_id
);
...
...
@@ -244,7 +243,7 @@ int E_(OpenEncoder)( vlc_object_t *p_this )
return
VLC_EGENERIC
;
}
/* Allocate the memory needed to store the
de
coder's structure */
/* Allocate the memory needed to store the
en
coder's structure */
if
(
(
p_sys
=
(
encoder_sys_t
*
)
malloc
(
sizeof
(
encoder_sys_t
))
)
==
NULL
)
{
msg_Err
(
p_enc
,
"out of memory"
);
...
...
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