summaryrefslogtreecommitdiff
path: root/libavformat/rdt.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2015-02-24 12:43:07 +0200
committerMartin Storsjö <martin@martin.st>2015-02-24 23:07:28 +0200
commit78791c086bcaf9eb084c27555b31fea8bbb7624a (patch)
tree5cd03f411521fa68d70de76a58efc2fbdae537ae /libavformat/rdt.c
parent88434f9725e7c9484dcbcf323566ae88a2904f32 (diff)
rtpdec: Use .init instead of .alloc to set default values
The ugly error handling in rdt gets improved in a later commit. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rdt.c')
-rw-r--r--libavformat/rdt.c21
1 files changed, 7 insertions, 14 deletions
diff --git a/libavformat/rdt.c b/libavformat/rdt.c
index f2ec3e7563..a6baf4616b 100644
--- a/libavformat/rdt.c
+++ b/libavformat/rdt.c
@@ -298,6 +298,9 @@ rdt_parse_packet (AVFormatContext *ctx, PayloadContext *rdt, AVStream *st,
int seq = 1, res;
AVIOContext pb;
+ if (!rdt->rmctx)
+ return AVERROR(EINVAL);
+
if (rdt->audio_pkt_cnt == 0) {
int pos;
@@ -521,20 +524,9 @@ ff_real_parse_sdp_a_line (AVFormatContext *s, int stream_index,
real_parse_asm_rulebook(s, s->streams[stream_index], p);
}
-static PayloadContext *
-rdt_new_context (void)
+static av_cold int rdt_init(AVFormatContext *s, int st_index, PayloadContext *rdt)
{
- PayloadContext *rdt = av_mallocz(sizeof(PayloadContext));
- int ret;
- if (!rdt)
- return NULL;
- ret = avformat_open_input(&rdt->rmctx, "", &ff_rdt_demuxer, NULL);
- if (ret < 0) {
- av_free(rdt);
- return NULL;
- }
-
- return rdt;
+ return avformat_open_input(&rdt->rmctx, "", &ff_rdt_demuxer, NULL);
}
static void
@@ -559,8 +551,9 @@ static RTPDynamicProtocolHandler rdt_ ## n ## _handler = { \
.enc_name = s, \
.codec_type = t, \
.codec_id = AV_CODEC_ID_NONE, \
+ .priv_data_size = sizeof(PayloadContext), \
+ .init = rdt_init, \
.parse_sdp_a_line = rdt_parse_sdp_line, \
- .alloc = rdt_new_context, \
.free = rdt_free_context, \
.parse_packet = rdt_parse_packet \
}