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
cfde3a7e
Commit
cfde3a7e
authored
Jul 07, 2010
by
Alex Converse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetics: whitespace
Originally committed as revision 24093 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
ce2e4ae3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
adtsenc.c
libavformat/adtsenc.c
+3
-3
No files found.
libavformat/adtsenc.c
View file @
cfde3a7e
...
...
@@ -77,7 +77,7 @@ static int adts_write_header(AVFormatContext *s)
ADTSContext
*
adts
=
s
->
priv_data
;
AVCodecContext
*
avc
=
s
->
streams
[
0
]
->
codec
;
if
(
avc
->
extradata_size
>
0
&&
if
(
avc
->
extradata_size
>
0
&&
ff_adts_decode_extradata
(
s
,
adts
,
avc
->
extradata
,
avc
->
extradata_size
)
<
0
)
return
-
1
;
...
...
@@ -123,10 +123,10 @@ static int adts_write_packet(AVFormatContext *s, AVPacket *pkt)
if
(
!
pkt
->
size
)
return
0
;
if
(
adts
->
write_adts
)
{
if
(
adts
->
write_adts
)
{
ff_adts_write_frame_header
(
adts
,
buf
,
pkt
->
size
,
adts
->
pce_size
);
put_buffer
(
pb
,
buf
,
ADTS_HEADER_SIZE
);
if
(
adts
->
pce_size
)
{
if
(
adts
->
pce_size
)
{
put_buffer
(
pb
,
adts
->
pce_data
,
adts
->
pce_size
);
adts
->
pce_size
=
0
;
}
...
...
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