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
7a97dd84
Commit
7a97dd84
authored
Aug 05, 2007
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove useless raw_write_header
Originally committed as revision 9923 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
ecc8fc11
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
16 deletions
+11
-16
raw.c
libavformat/raw.c
+11
-16
No files found.
libavformat/raw.c
View file @
7a97dd84
...
...
@@ -24,11 +24,6 @@
#ifdef CONFIG_MUXERS
/* simple formats */
static
int
raw_write_header
(
struct
AVFormatContext
*
s
)
{
return
0
;
}
static
int
flac_write_header
(
struct
AVFormatContext
*
s
)
{
static
const
uint8_t
header
[
8
]
=
{
...
...
@@ -501,7 +496,7 @@ AVOutputFormat ac3_muxer = {
0
,
CODEC_ID_AC3
,
0
,
raw_write_header
,
NULL
,
raw_write_packet
,
.
flags
=
AVFMT_NOTIMESTAMPS
,
};
...
...
@@ -568,7 +563,7 @@ AVOutputFormat h261_muxer = {
0
,
0
,
CODEC_ID_H261
,
raw_write_header
,
NULL
,
raw_write_packet
,
.
flags
=
AVFMT_NOTIMESTAMPS
,
};
...
...
@@ -596,7 +591,7 @@ AVOutputFormat h263_muxer = {
0
,
0
,
CODEC_ID_H263
,
raw_write_header
,
NULL
,
raw_write_packet
,
.
flags
=
AVFMT_NOTIMESTAMPS
,
};
...
...
@@ -624,7 +619,7 @@ AVOutputFormat m4v_muxer = {
0
,
CODEC_ID_NONE
,
CODEC_ID_MPEG4
,
raw_write_header
,
NULL
,
raw_write_packet
,
.
flags
=
AVFMT_NOTIMESTAMPS
,
};
...
...
@@ -652,7 +647,7 @@ AVOutputFormat h264_muxer = {
0
,
CODEC_ID_NONE
,
CODEC_ID_H264
,
raw_write_header
,
NULL
,
raw_write_packet
,
.
flags
=
AVFMT_NOTIMESTAMPS
,
};
...
...
@@ -679,7 +674,7 @@ AVOutputFormat mpeg1video_muxer = {
0
,
0
,
CODEC_ID_MPEG1VIDEO
,
raw_write_header
,
NULL
,
raw_write_packet
,
.
flags
=
AVFMT_NOTIMESTAMPS
,
};
...
...
@@ -694,7 +689,7 @@ AVOutputFormat mpeg2video_muxer = {
0
,
0
,
CODEC_ID_MPEG2VIDEO
,
raw_write_header
,
NULL
,
raw_write_packet
,
.
flags
=
AVFMT_NOTIMESTAMPS
,
};
...
...
@@ -735,7 +730,7 @@ AVOutputFormat mjpeg_muxer = {
0
,
0
,
CODEC_ID_MJPEG
,
raw_write_header
,
NULL
,
raw_write_packet
,
.
flags
=
AVFMT_NOTIMESTAMPS
,
};
...
...
@@ -779,7 +774,7 @@ AVOutputFormat pcm_ ## name ## _muxer = {\
0,\
codec,\
0,\
raw_write_header
,\
NULL
,\
raw_write_packet,\
.flags= AVFMT_NOTIMESTAMPS,\
};
...
...
@@ -876,7 +871,7 @@ AVOutputFormat rawvideo_muxer = {
0
,
CODEC_ID_NONE
,
CODEC_ID_RAWVIDEO
,
raw_write_header
,
NULL
,
raw_write_packet
,
.
flags
=
AVFMT_NOTIMESTAMPS
,
};
...
...
@@ -900,7 +895,7 @@ AVOutputFormat null_muxer = {
CODEC_ID_PCM_S16LE
,
#endif
CODEC_ID_RAWVIDEO
,
raw_write_header
,
NULL
,
null_write_packet
,
.
flags
=
AVFMT_NOFILE
|
AVFMT_RAWPICTURE
|
AVFMT_NOTIMESTAMPS
,
};
...
...
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