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
ca93bc17
Commit
ca93bc17
authored
Jan 15, 2009
by
Luca Abeni
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reindent after last commit
Originally committed as revision 16617 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
0a63a676
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
flvenc.c
libavformat/flvenc.c
+1
-1
matroskaenc.c
libavformat/matroskaenc.c
+1
-1
movenc.c
libavformat/movenc.c
+1
-1
No files found.
libavformat/flvenc.c
View file @
ca93bc17
...
...
@@ -366,7 +366,7 @@ static int flv_write_packet(AVFormatContext *s, AVPacket *pkt)
enc
->
extradata_size
>
0
&&
*
(
uint8_t
*
)
enc
->
extradata
!=
1
)
{
ff_avc_parse_nal_units
(
pb
,
pkt
->
data
,
pkt
->
size
);
}
else
{
put_buffer
(
pb
,
pkt
->
data
,
size
);
put_buffer
(
pb
,
pkt
->
data
,
size
);
}
put_be32
(
pb
,
size
+
flags_size
+
11
);
// previous tag size
flv
->
duration
=
FFMAX
(
flv
->
duration
,
pkt
->
pts
+
flv
->
delay
+
pkt
->
duration
);
...
...
libavformat/matroskaenc.c
View file @
ca93bc17
...
...
@@ -801,7 +801,7 @@ static void mkv_write_block(AVFormatContext *s, unsigned int blockid, AVPacket *
/* nal reformating needed */
ff_avc_parse_nal_units
(
pb
,
pkt
->
data
,
pkt
->
size
);
}
else
{
put_buffer
(
pb
,
pkt
->
data
,
pkt
->
size
);
put_buffer
(
pb
,
pkt
->
data
,
pkt
->
size
);
}
}
...
...
libavformat/movenc.c
View file @
ca93bc17
...
...
@@ -1774,7 +1774,7 @@ static int mov_write_packet(AVFormatContext *s, AVPacket *pkt)
/* nal reformating needed */
ff_avc_parse_nal_units
(
pb
,
pkt
->
data
,
pkt
->
size
);
}
else
{
put_buffer
(
pb
,
pkt
->
data
,
size
);
put_buffer
(
pb
,
pkt
->
data
,
size
);
}
put_flush_packet
(
pb
);
...
...
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