FFmpeg
Loading...
Searching...
No Matches
rtpdec_ac3.c
Go to the documentation of this file.
1/*
2 * RTP parser for AC3 payload format (RFC 4184)
3 * Copyright (c) 2015 Gilles Chanteperdrix <gch@xenomai.org>
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include "avformat.h"
23#include "avio_internal.h"
24#include "rtpdec_formats.h"
25
26#define RTP_AC3_PAYLOAD_HEADER_SIZE 2
27
28struct PayloadContext {
29 unsigned nr_frames;
30 unsigned last_frame;
31 uint32_t timestamp;
33};
34
36{
37 ffio_free_dyn_buf(&data->fragment);
38}
39
41 AVStream *st, AVPacket *pkt, uint32_t *timestamp,
42 const uint8_t *buf, int len, uint16_t seq,
43 int flags)
44{
45 unsigned frame_type;
46 unsigned nr_frames;
47 int err;
48
50 av_log(ctx, AV_LOG_ERROR, "Invalid %d bytes packet\n", len);
52 }
53
54 frame_type = buf[0] & 0x3;
55 nr_frames = buf[1];
58
59 switch (frame_type) {
60 case 0: /* One or more complete frames */
61 if (!nr_frames) {
62 av_log(ctx, AV_LOG_ERROR, "Invalid AC3 packet data\n");
64 }
65 if ((err = av_new_packet(pkt, len)) < 0) {
66 av_log(ctx, AV_LOG_ERROR, "Out of memory.\n");
67 return err;
68 }
69
70 pkt->stream_index = st->index;
71 memcpy(pkt->data, buf, len);
72 return 0;
73
74 case 1:
75 case 2: /* First fragment */
76 ffio_free_dyn_buf(&data->fragment);
77
78 data->last_frame = 1;
79 data->nr_frames = nr_frames;
80 err = avio_open_dyn_buf(&data->fragment);
81 if (err < 0)
82 return err;
83
84 avio_write(data->fragment, buf, len);
85 data->timestamp = *timestamp;
86 return AVERROR(EAGAIN);
87
88 case 3: /* Fragment other than first */
89 if (!data->fragment) {
91 "Received packet without a start fragment; dropping.\n");
92 return AVERROR(EAGAIN);
93 }
94 if (nr_frames != data->nr_frames ||
95 data->timestamp != *timestamp) {
96 ffio_free_dyn_buf(&data->fragment);
97 av_log(ctx, AV_LOG_ERROR, "Invalid packet received\n");
99 }
100
101 avio_write(data->fragment, buf, len);
102 data->last_frame++;
103 }
104
105 if (!(flags & RTP_FLAG_MARKER))
106 return AVERROR(EAGAIN);
107
108 if (data->last_frame != data->nr_frames) {
109 ffio_free_dyn_buf(&data->fragment);
110 av_log(ctx, AV_LOG_ERROR, "Missed %d packets\n",
111 data->nr_frames - data->last_frame);
112 return AVERROR_INVALIDDATA;
113 }
114
115 err = ff_rtp_finalize_packet(pkt, &data->fragment, st->index);
116 if (err < 0) {
118 "Error occurred when getting fragment buffer.\n");
119 return err;
120 }
121
122 return 0;
123}
124
126 .enc_name = "ac3",
127 .codec_type = AVMEDIA_TYPE_AUDIO,
128 .codec_id = AV_CODEC_ID_AC3,
129 .need_parsing = AVSTREAM_PARSE_FULL,
130 .priv_data_size = sizeof(PayloadContext),
133};
static av_cold void close(AVCodecParserContext *s)
Definition apv_parser.c:197
Main libavformat public API header.
@ AVSTREAM_PARSE_FULL
full parsing and repack
Definition avformat.h:611
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
Definition aviobuf.c:206
int avio_open_dyn_buf(AVIOContext **s)
Open a write only memory stream.
Definition aviobuf.c:1365
void ffio_free_dyn_buf(AVIOContext **s)
Free a dynamic buffer.
Definition aviobuf.c:1438
#define flags(name, subs,...)
Definition cbs_h264.c:74
static int parse_packet(AVFormatContext *s, AVPacket *pkt, int stream_index, int flush)
Parse a packet, add all split parts to parse_queue.
Definition demux.c:1178
static AVPacket * pkt
@ AV_CODEC_ID_AC3
Definition codec_id.h:456
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
Definition packet.c:98
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition log.h:216
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
frame_type
const char data[16]
Definition mxf.c:149
int ff_rtp_finalize_packet(AVPacket *pkt, AVIOContext **dyn_buf, int stream_idx)
Close the dynamic buffer and make a packet from it.
Definition rtpdec.c:983
#define RTP_FLAG_MARKER
RTP marker bit was set for this packet.
Definition rtpdec.h:94
static int ac3_handle_packet(AVFormatContext *ctx, PayloadContext *data, AVStream *st, AVPacket *pkt, uint32_t *timestamp, const uint8_t *buf, int len, uint16_t seq, int flags)
Definition rtpdec_ac3.c:40
static void ac3_close_context(PayloadContext *data)
Definition rtpdec_ac3.c:35
#define RTP_AC3_PAYLOAD_HEADER_SIZE
Definition rtpdec_ac3.c:26
const RTPDynamicProtocolHandler ff_ac3_dynamic_handler
Definition rtpdec_ac3.c:125
Format I/O context.
Definition avformat.h:1333
Bytestream IO Context.
Definition avio.h:160
This structure stores compressed data.
Definition packet.h:580
Stream structure.
Definition avformat.h:766
int index
stream index in AVFormatContext
Definition avformat.h:772
RTP/AV1 specific private data.
Definition rdt.c:85
unsigned nr_frames
Definition rtpdec_ac3.c:29
AVIOContext * fragment
buffer for split payloads
Definition rtpdec_ac3.c:32
unsigned last_frame
Definition rtpdec_ac3.c:30
uint32_t timestamp
last received timestamp for frame
Definition rtpdec_ac3.c:31
#define av_log(a,...)
static AVFormatContext * ctx
Definition movenc.c:49
int len