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
f18d2137
Commit
f18d2137
authored
Dec 28, 2012
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aiffenc: use ff_raw_write_packet()
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
8ad010a7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
9 deletions
+3
-9
Makefile
libavformat/Makefile
+1
-1
aiffenc.c
libavformat/aiffenc.c
+2
-8
No files found.
libavformat/Makefile
View file @
f18d2137
...
...
@@ -59,7 +59,7 @@ OBJS-$(CONFIG_AEA_DEMUXER) += aea.o pcm.o
OBJS-$(CONFIG_AFC_DEMUXER)
+=
afc.o
OBJS-$(CONFIG_AIFF_DEMUXER)
+=
aiffdec.o
pcm.o
isom.o
\
mov_chan.o
OBJS-$(CONFIG_AIFF_MUXER)
+=
aiffenc.o
isom.o
OBJS-$(CONFIG_AIFF_MUXER)
+=
aiffenc.o
isom.o
rawenc.o
OBJS-$(CONFIG_AMR_DEMUXER)
+=
amr.o
OBJS-$(CONFIG_AMR_MUXER)
+=
amr.o
OBJS-$(CONFIG_ANM_DEMUXER)
+=
anm.o
...
...
libavformat/aiffenc.c
View file @
f18d2137
...
...
@@ -25,6 +25,7 @@
#include "aiff.h"
#include "avio_internal.h"
#include "isom.h"
#include "rawenc.h"
typedef
struct
{
int64_t
form
;
...
...
@@ -118,13 +119,6 @@ static int aiff_write_header(AVFormatContext *s)
return
0
;
}
static
int
aiff_write_packet
(
AVFormatContext
*
s
,
AVPacket
*
pkt
)
{
AVIOContext
*
pb
=
s
->
pb
;
avio_write
(
pb
,
pkt
->
data
,
pkt
->
size
);
return
0
;
}
static
int
aiff_write_trailer
(
AVFormatContext
*
s
)
{
AVIOContext
*
pb
=
s
->
pb
;
...
...
@@ -170,7 +164,7 @@ AVOutputFormat ff_aiff_muxer = {
.
audio_codec
=
AV_CODEC_ID_PCM_S16BE
,
.
video_codec
=
AV_CODEC_ID_NONE
,
.
write_header
=
aiff_write_header
,
.
write_packet
=
aiff
_write_packet
,
.
write_packet
=
ff_raw
_write_packet
,
.
write_trailer
=
aiff_write_trailer
,
.
codec_tag
=
(
const
AVCodecTag
*
const
[]){
ff_codec_aiff_tags
,
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