FFmpeg
wvenc.c
Go to the documentation of this file.
1 /*
2  * WavPack muxer
3  * Copyright (c) 2013 Konstantin Shishkov <kostya.shishkov@gmail.com>
4  * Copyright (c) 2012 Paul B Mahol
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 #include "libavutil/attributes.h"
24 
25 #include "apetag.h"
26 #include "avformat.h"
27 #include "mux.h"
28 #include "wv.h"
29 
30 typedef struct WvMuxContext {
31  int64_t samples;
32 } WvMuxContext;
33 
35 {
38  int ret;
39 
40  if (pkt->size < WV_HEADER_SIZE ||
41  (ret = ff_wv_parse_header(&header, pkt->data)) < 0) {
42  av_log(ctx, AV_LOG_ERROR, "Invalid WavPack packet.\n");
43  return AVERROR(EINVAL);
44  }
45  s->samples += header.samples;
46 
48 
49  return 0;
50 }
51 
53 {
55 
56  /* update total number of samples in the first block */
57  if ((ctx->pb->seekable & AVIO_SEEKABLE_NORMAL) && s->samples &&
58  s->samples < UINT32_MAX) {
59  int64_t pos = avio_tell(ctx->pb);
60  avio_seek(ctx->pb, 12, SEEK_SET);
61  avio_wl32(ctx->pb, s->samples);
62  avio_seek(ctx->pb, pos, SEEK_SET);
63  }
64 
66  return 0;
67 }
68 
70  .p.name = "wv",
71  .p.long_name = NULL_IF_CONFIG_SMALL("raw WavPack"),
72  .p.mime_type = "audio/x-wavpack",
73  .p.extensions = "wv",
74  .priv_data_size = sizeof(WvMuxContext),
75  .p.audio_codec = AV_CODEC_ID_WAVPACK,
76  .p.video_codec = AV_CODEC_ID_NONE,
77  .p.subtitle_codec = AV_CODEC_ID_NONE,
78  .write_packet = wv_write_packet,
79  .write_trailer = wv_write_trailer,
80  .p.flags = AVFMT_NOTIMESTAMPS,
81  .flags_internal = FF_OFMT_FLAG_MAX_ONE_OF_EACH |
83 };
AVOutputFormat::name
const char * name
Definition: avformat.h:510
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
AVFMT_NOTIMESTAMPS
#define AVFMT_NOTIMESTAMPS
Format does not need / have any timestamps.
Definition: avformat.h:479
apetag.h
AVPacket::data
uint8_t * data
Definition: packet.h:524
WvMuxContext::samples
int64_t samples
Definition: wvenc.c:31
FF_OFMT_FLAG_ONLY_DEFAULT_CODECS
#define FF_OFMT_FLAG_ONLY_DEFAULT_CODECS
If this flag is set, then the only permitted audio/video/subtitle codec ids are AVOutputFormat....
Definition: mux.h:59
WvHeader
Definition: wv.h:34
FFOutputFormat::p
AVOutputFormat p
The public AVOutputFormat.
Definition: mux.h:65
avio_tell
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:494
pkt
AVPacket * pkt
Definition: movenc.c:60
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
av_cold
#define av_cold
Definition: attributes.h:90
s
#define s(width, name)
Definition: cbs_vp9.c:198
wv_write_trailer
static av_cold int wv_write_trailer(AVFormatContext *ctx)
Definition: wvenc.c:52
ctx
AVFormatContext * ctx
Definition: movenc.c:49
ff_ape_write_tag
int ff_ape_write_tag(AVFormatContext *s)
Write an APE tag into a file.
Definition: apetag.c:177
AVFormatContext
Format I/O context.
Definition: avformat.h:1255
WV_HEADER_SIZE
#define WV_HEADER_SIZE
Definition: wavpack.h:33
AVFormatContext::pb
AVIOContext * pb
I/O context.
Definition: avformat.h:1297
FFOutputFormat
Definition: mux.h:61
WvMuxContext
Definition: wvenc.c:30
ff_wv_parse_header
int ff_wv_parse_header(WvHeader *wv, const uint8_t *data)
Parse a WavPack block header.
Definition: wv.c:30
ff_wv_muxer
const FFOutputFormat ff_wv_muxer
Definition: wvenc.c:69
AVPacket::size
int size
Definition: packet.h:525
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:94
AVIOContext::seekable
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:261
header
static const uint8_t header[24]
Definition: sdr2.c:68
avio_write
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
Definition: aviobuf.c:201
avio_wl32
void avio_wl32(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:357
attributes.h
AV_CODEC_ID_NONE
@ AV_CODEC_ID_NONE
Definition: codec_id.h:50
FF_OFMT_FLAG_MAX_ONE_OF_EACH
#define FF_OFMT_FLAG_MAX_ONE_OF_EACH
If this flag is set, it indicates that for each codec type whose corresponding default codec (i....
Definition: mux.h:50
ret
ret
Definition: filter_design.txt:187
avio_seek
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:231
pos
unsigned int pos
Definition: spdifenc.c:414
avformat.h
wv.h
AVIO_SEEKABLE_NORMAL
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
Definition: avio.h:41
wv_write_packet
static int wv_write_packet(AVFormatContext *ctx, AVPacket *pkt)
Definition: wvenc.c:34
AVPacket
This structure stores compressed data.
Definition: packet.h:501
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AV_CODEC_ID_WAVPACK
@ AV_CODEC_ID_WAVPACK
Definition: codec_id.h:465
AVFormatContext::priv_data
void * priv_data
Format private data.
Definition: avformat.h:1283
mux.h