Libav
dfa.c
Go to the documentation of this file.
1 /*
2  * Chronomaster DFA Format Demuxer
3  * Copyright (c) 2011 Konstantin Shishkov
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #include <inttypes.h>
23 
24 #include "libavutil/intreadwrite.h"
25 #include "avformat.h"
26 #include "internal.h"
27 
28 static int dfa_probe(AVProbeData *p)
29 {
30  if (p->buf_size < 4 || AV_RL32(p->buf) != MKTAG('D', 'F', 'I', 'A'))
31  return 0;
32 
33  return AVPROBE_SCORE_MAX;
34 }
35 
37 {
38  AVIOContext *pb = s->pb;
39  AVStream *st;
40  int frames;
41  uint32_t mspf;
42 
43  if (avio_rl32(pb) != MKTAG('D', 'F', 'I', 'A')) {
44  av_log(s, AV_LOG_ERROR, "Invalid magic for DFA\n");
45  return AVERROR_INVALIDDATA;
46  }
47  avio_skip(pb, 2); // unused
48  frames = avio_rl16(pb);
49 
50  st = avformat_new_stream(s, NULL);
51  if (!st)
52  return AVERROR(ENOMEM);
53 
56  st->codec->width = avio_rl16(pb);
57  st->codec->height = avio_rl16(pb);
58  mspf = avio_rl32(pb);
59  if (!mspf) {
60  av_log(s, AV_LOG_WARNING, "Zero FPS reported, defaulting to 10\n");
61  mspf = 100;
62  }
63  avpriv_set_pts_info(st, 24, mspf, 1000);
64  avio_skip(pb, 128 - 16); // padding
65  st->duration = frames;
66 
67  return 0;
68 }
69 
71 {
72  AVIOContext *pb = s->pb;
73  uint32_t frame_size;
74  int ret, first = 1;
75 
76  if (pb->eof_reached)
77  return AVERROR_EOF;
78 
79  if (av_get_packet(pb, pkt, 12) != 12)
80  return AVERROR(EIO);
81  while (!pb->eof_reached) {
82  if (!first) {
83  ret = av_append_packet(pb, pkt, 12);
84  if (ret < 0) {
85  av_free_packet(pkt);
86  return ret;
87  }
88  } else
89  first = 0;
90  frame_size = AV_RL32(pkt->data + pkt->size - 8);
91  if (frame_size > INT_MAX - 4) {
92  av_log(s, AV_LOG_ERROR, "Too large chunk size: %"PRIu32"\n", frame_size);
93  return AVERROR(EIO);
94  }
95  if (AV_RL32(pkt->data + pkt->size - 12) == MKTAG('E', 'O', 'F', 'R')) {
96  if (frame_size) {
98  "skipping %"PRIu32" bytes of end-of-frame marker chunk\n",
99  frame_size);
100  avio_skip(pb, frame_size);
101  }
102  return 0;
103  }
104  ret = av_append_packet(pb, pkt, frame_size);
105  if (ret < 0) {
106  av_free_packet(pkt);
107  return ret;
108  }
109  }
110 
111  return 0;
112 }
113 
115  .name = "dfa",
116  .long_name = NULL_IF_CONFIG_SMALL("Chronomaster DFA"),
117  .read_probe = dfa_probe,
118  .read_header = dfa_read_header,
119  .read_packet = dfa_read_packet,
120  .flags = AVFMT_GENERIC_INDEX,
121 };
Bytestream IO Context.
Definition: avio.h:68
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:54
void av_free_packet(AVPacket *pkt)
Free a packet.
Definition: avpacket.c:243
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:129
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:2829
int size
Definition: avcodec.h:974
static int dfa_read_header(AVFormatContext *s)
Definition: dfa.c:36
Format I/O context.
Definition: avformat.h:922
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:2521
uint8_t * data
Definition: avcodec.h:973
#define AVERROR_EOF
End of file.
Definition: error.h:51
int av_get_packet(AVIOContext *s, AVPacket *pkt, int size)
Allocate and read the payload of a packet and initialize its fields with default values.
Definition: utils.c:117
int av_append_packet(AVIOContext *s, AVPacket *pkt, int size)
Read data and append it to the current content of the AVPacket.
Definition: utils.c:127
static const uint8_t frame_size[4]
Definition: g723_1_data.h:47
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:123
unsigned int avio_rl32(AVIOContext *s)
Definition: aviobuf.c:575
#define AVERROR(e)
Definition: error.h:43
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:145
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:169
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:718
int buf_size
Size of buf except extra allocated bytes.
Definition: avformat.h:398
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:397
int width
picture width / height.
Definition: avcodec.h:1229
static av_always_inline int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: avio.h:210
#define AV_RL32
Definition: intreadwrite.h:146
Stream structure.
Definition: avformat.h:699
NULL
Definition: eval.c:55
enum AVMediaType codec_type
Definition: avcodec.h:1058
enum AVCodecID codec_id
Definition: avcodec.h:1067
AVIOContext * pb
I/O context.
Definition: avformat.h:964
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:417
AVInputFormat ff_dfa_demuxer
Definition: dfa.c:114
This structure contains the data a format has to probe a file.
Definition: avformat.h:395
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:756
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:404
unsigned int avio_rl16(AVIOContext *s)
Definition: aviobuf.c:559
Main libavformat public API header.
static int dfa_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: dfa.c:70
static int dfa_probe(AVProbeData *p)
Definition: dfa.c:28
int eof_reached
true if eof reached
Definition: avio.h:96
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:525
#define MKTAG(a, b, c, d)
Definition: common.h:238
This structure stores compressed data.
Definition: avcodec.h:950