annotate pva.c @ 6440:8beba113f242 libavformat

move ac3/eac3 demuxer to its own file
author aurel
date Sun, 29 Aug 2010 22:02:47 +0000
parents 536e5527c1e0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
1 /*
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
2 * TechnoTrend PVA (.pva) demuxer
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
3 * Copyright (c) 2007, 2008 Ivo van Poorten
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
4 *
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
5 * This file is part of FFmpeg.
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
6 *
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
11 *
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
15 * Lesser General Public License for more details.
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
16 *
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
20 */
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
21
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
22 #include "avformat.h"
2907
b548dfced05b use ff_parse_pes_pts for parsing an MPEG-PES timestamp
ivo
parents: 2900
diff changeset
23 #include "mpeg.h"
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
24
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
25 #define PVA_MAX_PAYLOAD_LENGTH 0x17f8
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
26 #define PVA_VIDEO_PAYLOAD 0x01
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
27 #define PVA_AUDIO_PAYLOAD 0x02
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
28 #define PVA_MAGIC (('A' << 8) + 'V')
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
29
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
30 typedef struct {
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
31 int continue_pes;
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
32 } PVAContext;
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
33
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
34 static int pva_probe(AVProbeData * pd) {
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
35 unsigned char *buf = pd->buf;
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
36
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
37 if (AV_RB16(buf) == PVA_MAGIC && buf[2] && buf[2] < 3 && buf[4] == 0x55)
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
38 return AVPROBE_SCORE_MAX / 2;
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
39
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
40 return 0;
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
41 }
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
42
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
43 static int pva_read_header(AVFormatContext *s, AVFormatParameters *ap) {
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
44 AVStream *st;
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
45
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
46 if (!(st = av_new_stream(s, 0)))
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
47 return AVERROR(ENOMEM);
5910
536e5527c1e0 Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents: 4968
diff changeset
48 st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
49 st->codec->codec_id = CODEC_ID_MPEG2VIDEO;
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
50 st->need_parsing = AVSTREAM_PARSE_FULL;
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
51 av_set_pts_info(st, 32, 1, 90000);
2910
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
52 av_add_index_entry(st, 0, 0, 0, 0, AVINDEX_KEYFRAME);
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
53
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
54 if (!(st = av_new_stream(s, 1)))
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
55 return AVERROR(ENOMEM);
5910
536e5527c1e0 Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents: 4968
diff changeset
56 st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
2896
b6d3640bedeb change audio codec id to mp2
ivo
parents: 2895
diff changeset
57 st->codec->codec_id = CODEC_ID_MP2;
4968
72b7219c6337 technically mp2 in pva needs AVSTREAM_PARSE_FULL
bcoudurier
parents: 4903
diff changeset
58 st->need_parsing = AVSTREAM_PARSE_FULL;
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
59 av_set_pts_info(st, 33, 1, 90000);
2910
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
60 av_add_index_entry(st, 0, 0, 0, 0, AVINDEX_KEYFRAME);
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
61
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
62 /* the parameters will be extracted from the compressed bitstream */
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
63 return 0;
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
64 }
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
65
2910
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
66 #define pva_log if (read_packet) av_log
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
67
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
68 static int read_part_of_packet(AVFormatContext *s, int64_t *pts,
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
69 int *len, int *strid, int read_packet) {
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
70 ByteIOContext *pb = s->pb;
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
71 PVAContext *pvactx = s->priv_data;
2910
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
72 int syncword, streamid, reserved, flags, length, pts_flag;
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
73 int64_t pva_pts = AV_NOPTS_VALUE, startpos;
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
74
2898
32895d361262 do not return an error, but warn and recover when encountering an audio packet
ivo
parents: 2897
diff changeset
75 recover:
2910
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
76 startpos = url_ftell(pb);
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
77
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
78 syncword = get_be16(pb);
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
79 streamid = get_byte(pb);
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
80 get_byte(pb); /* counter not used */
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
81 reserved = get_byte(pb);
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
82 flags = get_byte(pb);
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
83 length = get_be16(pb);
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
84
2900
a28c002dd2b4 cosmetics, superfluous space
ivo
parents: 2899
diff changeset
85 pts_flag = flags & 0x10;
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
86
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
87 if (syncword != PVA_MAGIC) {
2910
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
88 pva_log(s, AV_LOG_ERROR, "invalid syncword\n");
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
89 return AVERROR(EIO);
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
90 }
2897
6d6dfee21471 validate streamid before use
ivo
parents: 2896
diff changeset
91 if (streamid != PVA_VIDEO_PAYLOAD && streamid != PVA_AUDIO_PAYLOAD) {
2910
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
92 pva_log(s, AV_LOG_ERROR, "invalid streamid\n");
2897
6d6dfee21471 validate streamid before use
ivo
parents: 2896
diff changeset
93 return AVERROR(EIO);
6d6dfee21471 validate streamid before use
ivo
parents: 2896
diff changeset
94 }
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
95 if (reserved != 0x55) {
2910
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
96 pva_log(s, AV_LOG_WARNING, "expected reserved byte to be 0x55\n");
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
97 }
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
98 if (length > PVA_MAX_PAYLOAD_LENGTH) {
2910
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
99 pva_log(s, AV_LOG_ERROR, "invalid payload length %u\n", length);
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
100 return AVERROR(EIO);
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
101 }
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
102
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
103 if (streamid == PVA_VIDEO_PAYLOAD && pts_flag) {
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
104 pva_pts = get_be32(pb);
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
105 length -= 4;
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
106 } else if (streamid == PVA_AUDIO_PAYLOAD) {
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
107 /* PVA Audio Packets either start with a signaled PES packet or
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
108 * are a continuation of the previous PES packet. New PES packets
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
109 * always start at the beginning of a PVA Packet, never somewhere in
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
110 * the middle. */
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
111 if (!pvactx->continue_pes) {
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
112 int pes_signal, pes_header_data_length, pes_packet_length,
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
113 pes_flags;
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
114 unsigned char pes_header_data[256];
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
115
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
116 pes_signal = get_be24(pb);
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
117 get_byte(pb);
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
118 pes_packet_length = get_be16(pb);
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
119 pes_flags = get_be16(pb);
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
120 pes_header_data_length = get_byte(pb);
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
121
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
122 if (pes_signal != 1) {
2910
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
123 pva_log(s, AV_LOG_WARNING, "expected signaled PES packet, "
2898
32895d361262 do not return an error, but warn and recover when encountering an audio packet
ivo
parents: 2897
diff changeset
124 "trying to recover\n");
32895d361262 do not return an error, but warn and recover when encountering an audio packet
ivo
parents: 2897
diff changeset
125 url_fskip(pb, length - 9);
2910
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
126 if (!read_packet)
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
127 return AVERROR(EIO);
2898
32895d361262 do not return an error, but warn and recover when encountering an audio packet
ivo
parents: 2897
diff changeset
128 goto recover;
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
129 }
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
130
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
131 get_buffer(pb, pes_header_data, pes_header_data_length);
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
132 length -= 9 + pes_header_data_length;
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
133
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
134 pes_packet_length -= 3 + pes_header_data_length;
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
135
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
136 pvactx->continue_pes = pes_packet_length;
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
137
2907
b548dfced05b use ff_parse_pes_pts for parsing an MPEG-PES timestamp
ivo
parents: 2900
diff changeset
138 if (pes_flags & 0x80 && (pes_header_data[0] & 0xf0) == 0x20)
b548dfced05b use ff_parse_pes_pts for parsing an MPEG-PES timestamp
ivo
parents: 2900
diff changeset
139 pva_pts = ff_parse_pes_pts(pes_header_data);
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
140 }
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
141
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
142 pvactx->continue_pes -= length;
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
143
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
144 if (pvactx->continue_pes < 0) {
2910
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
145 pva_log(s, AV_LOG_WARNING, "audio data corruption\n");
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
146 pvactx->continue_pes = 0;
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
147 }
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
148 }
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
149
2910
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
150 if (pva_pts != AV_NOPTS_VALUE)
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
151 av_add_index_entry(s->streams[streamid-1], startpos, pva_pts, 0, 0, AVINDEX_KEYFRAME);
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
152
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
153 *pts = pva_pts;
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
154 *len = length;
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
155 *strid = streamid;
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
156 return 0;
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
157 }
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
158
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
159 static int pva_read_packet(AVFormatContext *s, AVPacket *pkt) {
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
160 ByteIOContext *pb = s->pb;
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
161 int64_t pva_pts;
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
162 int ret, length, streamid;
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
163
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
164 if (read_part_of_packet(s, &pva_pts, &length, &streamid, 1) < 0 ||
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
165 (ret = av_get_packet(pb, pkt, length)) <= 0)
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
166 return AVERROR(EIO);
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
167
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
168 pkt->stream_index = streamid - 1;
2909
840ade0be043 cosmetics
ivo
parents: 2908
diff changeset
169 pkt->pts = pva_pts;
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
170
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
171 return ret;
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
172 }
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
173
2910
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
174 static int64_t pva_read_timestamp(struct AVFormatContext *s, int stream_index,
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
175 int64_t *pos, int64_t pos_limit) {
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
176 ByteIOContext *pb = s->pb;
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
177 PVAContext *pvactx = s->priv_data;
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
178 int length, streamid;
4903
0b5471a1f061 avoid possibly uninitialized return value
ivo
parents: 3424
diff changeset
179 int64_t res = AV_NOPTS_VALUE;
2910
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
180
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
181 pos_limit = FFMIN(*pos+PVA_MAX_PAYLOAD_LENGTH*8, (uint64_t)*pos+pos_limit);
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
182
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
183 while (*pos < pos_limit) {
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
184 res = AV_NOPTS_VALUE;
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
185 url_fseek(pb, *pos, SEEK_SET);
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
186
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
187 pvactx->continue_pes = 0;
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
188 if (read_part_of_packet(s, &res, &length, &streamid, 0)) {
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
189 (*pos)++;
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
190 continue;
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
191 }
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
192 if (streamid - 1 != stream_index || res == AV_NOPTS_VALUE) {
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
193 *pos = url_ftell(pb) + length;
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
194 continue;
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
195 }
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
196 break;
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
197 }
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
198
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
199 pvactx->continue_pes = 0;
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
200 return res;
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
201 }
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
202
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
203 AVInputFormat pva_demuxer = {
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
204 "pva",
3424
7a0230981402 Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents: 2910
diff changeset
205 NULL_IF_CONFIG_SMALL("TechnoTrend PVA file and stream format"),
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
206 sizeof(PVAContext),
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
207 pva_probe,
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
208 pva_read_header,
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
209 pva_read_packet,
2910
dfb3aa1324c7 Implement read_timestamp and enable seeking in PVA files.
ivo
parents: 2909
diff changeset
210 .read_timestamp = pva_read_timestamp
2880
a174a3a0c2c0 TechnoTrend PVA Demuxer
ivo
parents:
diff changeset
211 };