FFmpeg
Loading...
Searching...
No Matches
iv8.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2009 Michael Niedermayer
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include "avformat.h"
22#include "demux.h"
23#include "internal.h"
24
25
26static int probe(const AVProbeData *p)
27{
28 // the single file I have starts with that, I do not know if others do, too
29 if( p->buf[0] == 1
30 && p->buf[1] == 1
31 && p->buf[2] == 3
32 && p->buf[3] == 0xB8
33 && p->buf[4] == 0x80
34 && p->buf[5] == 0x60
35 )
36 return AVPROBE_SCORE_MAX-2;
37
38 return 0;
39}
40
42{
43 AVStream *st;
44
46 if (!st)
47 return AVERROR(ENOMEM);
48
52 avpriv_set_pts_info(st, 64, 1, 90000);
53
54 return 0;
55
56}
57
59{
60 int ret, size, pts, type, flags;
61 int first_pkt = 0;
62 int frame_complete = 0;
63
64 while (!frame_complete) {
65
66 type = avio_rb16(s->pb); // 257 or 258
67 size = avio_rb16(s->pb);
68 flags = avio_rb16(s->pb); //some flags, 0x80 indicates end of frame
69 avio_rb16(s->pb); //packet number
70 pts = avio_rb32(s->pb);
71 avio_rb32(s->pb); //6A 13 E3 88
72
73 frame_complete = flags & 0x80;
74
75 size -= 12;
76 if (size < 1)
77 return -1;
78
79 if (type == 258) {
80 avio_skip(s->pb, size);
81 frame_complete = 0;
82 continue;
83 }
84
85 if (!first_pkt) {
86 ret = av_get_packet(s->pb, pkt, size);
87 if (ret < 0)
88 return ret;
89 first_pkt = 1;
90 pkt->pts = pts;
91 pkt->pos -= 16;
92 } else {
93 ret = av_append_packet(s->pb, pkt, size);
94 if (ret < 0) {
95 av_log(s, AV_LOG_ERROR, "failed to grow packet\n");
96 return ret;
97 }
98 }
99 if (ret < size) {
100 av_log(s, AV_LOG_ERROR, "Truncated packet! Read %d of %d bytes\n",
101 ret, size);
102 pkt->flags |= AV_PKT_FLAG_CORRUPT;
103 break;
104 }
105 }
106 pkt->stream_index = 0;
107
108 return 0;
109}
110
112 .p.name = "iv8",
113 .p.long_name = NULL_IF_CONFIG_SMALL("IndigoVision 8000 video"),
114 .p.flags = AVFMT_GENERIC_INDEX,
115 .read_probe = probe,
116 .read_header = read_header,
117 .read_packet = read_packet,
118};
static int probe(const AVProbeData *p)
Definition act.c:39
const FFInputFormat ff_iv8_demuxer
Definition iv8.c:111
void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition avformat.c:834
Main libavformat public API header.
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:114
#define AVPROBE_SCORE_MAX
maximum score
Definition avformat.h:483
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:98
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition avformat.h:499
@ AVSTREAM_PARSE_FULL
full parsing and repack
Definition avformat.h:611
unsigned int avio_rb16(AVIOContext *s)
Definition aviobuf.c:749
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition aviobuf.c:321
unsigned int avio_rb32(AVIOContext *s)
Definition aviobuf.c:764
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
#define flags(name, subs,...)
Definition cbs_h264.c:74
#define s(width, name)
Definition cbs_vp9.c:198
#define NULL
Definition coverity.c:32
static AVPacket * pkt
static int read_header(FFV1Context *f, RangeCoder *c)
Definition ffv1dec.c:578
@ AV_CODEC_ID_MPEG4
Definition codec_id.h:62
#define AV_PKT_FLAG_CORRUPT
The packet content is corrupted.
Definition packet.h:651
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
cl_device_type type
static int read_packet(AVFormatContext *s, AVPacket *pkt)
Definition iv8.c:58
static int read_header(AVFormatContext *s)
Definition iv8.c:41
static int probe(const AVProbeData *p)
Definition iv8.c:26
static av_always_inline FFStream * ffstream(AVStream *st)
Definition internal.h:365
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
enum AVMediaType codec_type
General type of the encoded data.
Definition codec_par.h:53
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition codec_par.h:57
Format I/O context.
Definition avformat.h:1333
This structure stores compressed data.
Definition packet.h:580
This structure contains the data a format has to probe a file.
Definition avformat.h:471
Stream structure.
Definition avformat.h:766
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:789
enum AVStreamParseType need_parsing
Definition internal.h:321
#define av_log(a,...)
static int64_t pts
int size