Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
17c95361
Commit
17c95361
authored
Oct 26, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mkvtimestamp v2 muxer: remove unneeded prefixes
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
7ea77a61
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
timecode_v2.c
libavformat/timecode_v2.c
+4
-4
No files found.
libavformat/timecode_v2.c
View file @
17c95361
...
...
@@ -21,7 +21,7 @@
#include "avformat.h"
static
int
timecode_v2_
write_header
(
AVFormatContext
*
s
)
static
int
write_header
(
AVFormatContext
*
s
)
{
static
const
char
*
header
=
"# timecode format v2
\n
"
;
put_buffer
(
s
->
pb
,
header
,
strlen
(
header
));
...
...
@@ -29,7 +29,7 @@ static int timecode_v2_write_header(AVFormatContext *s)
return
0
;
}
static
int
timecode_v2_
write_packet
(
AVFormatContext
*
s
,
AVPacket
*
pkt
)
static
int
write_packet
(
AVFormatContext
*
s
,
AVPacket
*
pkt
)
{
char
buf
[
256
];
if
(
pkt
->
stream_index
)
...
...
@@ -48,6 +48,6 @@ AVOutputFormat ff_timecode_v2_muxer = {
0
,
CODEC_ID_NONE
,
CODEC_ID_RAWVIDEO
,
timecode_v2_
write_header
,
timecode_v2_
write_packet
,
write_header
,
write_packet
,
};
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