annotate dv.c @ 1289:6db39fb15d60 libavformat

* Restructuring the division of labor between DV codec and DV format [ Based on a patch by Brian Brice (bbrice at newtek dot com) ]
author romansh
date Mon, 04 Sep 2006 03:33:11 +0000
parents d18cc9a1fd02
children 132206560fe6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
1 /*
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
2 * General DV muxer/demuxer
933
diego
parents: 903
diff changeset
3 * Copyright (c) 2003 Roman Shaposhnik
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
4 *
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
5 * Many thanks to Dan Dennedy <dan@dennedy.org> for providing wealth
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
6 * of DV technical info.
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
7 *
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
8 * Raw DV format
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
9 * Copyright (c) 2002 Fabrice Bellard.
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
10 *
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
11 * 50 Mbps (DVCPRO50) support
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
12 * Copyright (c) 2006 Daniel Maas <dmaas@maasdigital.com>
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
13 *
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
14 * This library is free software; you can redistribute it and/or
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
15 * modify it under the terms of the GNU Lesser General Public
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
16 * License as published by the Free Software Foundation; either
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
17 * version 2 of the License, or (at your option) any later version.
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
18 *
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
19 * This library is distributed in the hope that it will be useful,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
22 * Lesser General Public License for more details.
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
23 *
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
24 * You should have received a copy of the GNU Lesser General Public
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
25 * License along with this library; if not, write to the Free Software
896
edbe5c3717f9 Update licensing information: The FSF changed postal address.
diego
parents: 887
diff changeset
26 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
27 */
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
28 #include <time.h>
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
29 #include "avformat.h"
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
30 #include "dvdata.h"
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
31 #include "dv.h"
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
32
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
33 struct DVDemuxContext {
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
34 const DVprofile* sys; /* Current DV profile. E.g.: 525/60, 625/50 */
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
35 AVFormatContext* fctx;
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
36 AVStream* vst;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
37 AVStream* ast[2];
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
38 AVPacket audio_pkt[2];
562
bf3231dd1d7c * static allocation for audio packets. This will make it a little bit
romansh
parents: 560
diff changeset
39 uint8_t audio_buf[2][8192];
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
40 int ach;
392
caf266cfadaf * enabling seek in raw DV files
romansh
parents: 384
diff changeset
41 int frames;
caf266cfadaf * enabling seek in raw DV files
romansh
parents: 384
diff changeset
42 uint64_t abytes;
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
43 };
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
44
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
45 struct DVMuxContext {
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
46 const DVprofile* sys; /* Current DV profile. E.g.: 525/60, 625/50 */
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
47 int n_ast; /* Number of stereo audio streams (up to 2) */
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
48 AVStream *ast[2]; /* Stereo audio streams */
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
49 FifoBuffer audio_data[2]; /* Fifo for storing excessive amounts of PCM */
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
50 int frames; /* Number of a current frame */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
51 time_t start_time; /* Start time of recording */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
52 int has_audio; /* frame under contruction has audio */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
53 int has_video; /* frame under contruction has video */
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
54 uint8_t frame_buf[DV_MAX_FRAME_SIZE]; /* frame under contruction */
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
55 };
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
56
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
57 static const int dv_aaux_packs_dist[12][9] = {
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
58 { 0xff, 0xff, 0xff, 0x50, 0x51, 0x52, 0x53, 0xff, 0xff },
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
59 { 0x50, 0x51, 0x52, 0x53, 0xff, 0xff, 0xff, 0xff, 0xff },
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
60 { 0xff, 0xff, 0xff, 0x50, 0x51, 0x52, 0x53, 0xff, 0xff },
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
61 { 0x50, 0x51, 0x52, 0x53, 0xff, 0xff, 0xff, 0xff, 0xff },
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
62 { 0xff, 0xff, 0xff, 0x50, 0x51, 0x52, 0x53, 0xff, 0xff },
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
63 { 0x50, 0x51, 0x52, 0x53, 0xff, 0xff, 0xff, 0xff, 0xff },
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
64 { 0xff, 0xff, 0xff, 0x50, 0x51, 0x52, 0x53, 0xff, 0xff },
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
65 { 0x50, 0x51, 0x52, 0x53, 0xff, 0xff, 0xff, 0xff, 0xff },
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
66 { 0xff, 0xff, 0xff, 0x50, 0x51, 0x52, 0x53, 0xff, 0xff },
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
67 { 0x50, 0x51, 0x52, 0x53, 0xff, 0xff, 0xff, 0xff, 0xff },
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
68 { 0xff, 0xff, 0xff, 0x50, 0x51, 0x52, 0x53, 0xff, 0xff },
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
69 { 0x50, 0x51, 0x52, 0x53, 0xff, 0xff, 0xff, 0xff, 0xff },
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
70 };
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
71
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
72 static inline uint16_t dv_audio_12to16(uint16_t sample)
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
73 {
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
74 uint16_t shift, result;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
75
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
76 sample = (sample < 0x800) ? sample : sample | 0xf000;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
77 shift = (sample & 0xf00) >> 8;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
78
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
79 if (shift < 0x2 || shift > 0xd) {
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
80 result = sample;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
81 } else if (shift < 0x8) {
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
82 shift--;
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
83 result = (sample - (256 * shift)) << shift;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
84 } else {
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
85 shift = 0xe - shift;
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
86 result = ((sample + ((256 * shift) + 1)) << shift) - 1;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
87 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
88
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
89 return result;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
90 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
91
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
92 static int dv_audio_frame_size(const DVprofile* sys, int frame)
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
93 {
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
94 return sys->audio_samples_dist[frame % (sizeof(sys->audio_samples_dist)/
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
95 sizeof(sys->audio_samples_dist[0]))];
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
96 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
97
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
98 static int dv_write_pack(enum dv_pack_type pack_id, DVMuxContext *c, uint8_t* buf)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
99 {
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
100 struct tm tc;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
101 time_t ct;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
102 int ltc_frame;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
103
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
104 /* Its hard to tell what SMPTE requires w.r.t. APT, but Quicktime needs it.
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
105 * We set it based on pix_fmt value but it really should be per DV profile */
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
106 int apt = (c->sys->pix_fmt == PIX_FMT_YUV422P ? 1 : 0);
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
107
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
108 buf[0] = (uint8_t)pack_id;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
109 switch (pack_id) {
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
110 case dv_timecode:
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
111 ct = (time_t)(c->frames / ((float)c->sys->frame_rate /
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
112 (float)c->sys->frame_rate_base));
515
ad72189eec07 * replacing calls to not-always-available gmtime_r with our own code.
romansh
parents: 508
diff changeset
113 brktimegm(ct, &tc);
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
114 /*
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
115 * LTC drop-frame frame counter drops two frames (0 and 1) every
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
116 * minute, unless it is exactly divisible by 10
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
117 */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
118 ltc_frame = (c->frames + 2*ct/60 - 2*ct/600) % c->sys->ltc_divisor;
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
119 buf[1] = (0 << 7) | /* Color fame: 0 - unsync; 1 - sync mode */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
120 (1 << 6) | /* Drop frame timecode: 0 - nondrop; 1 - drop */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
121 ((ltc_frame / 10) << 4) | /* Tens of frames */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
122 (ltc_frame % 10); /* Units of frames */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
123 buf[2] = (1 << 7) | /* Biphase mark polarity correction: 0 - even; 1 - odd */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
124 ((tc.tm_sec / 10) << 4) | /* Tens of seconds */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
125 (tc.tm_sec % 10); /* Units of seconds */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
126 buf[3] = (1 << 7) | /* Binary group flag BGF0 */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
127 ((tc.tm_min / 10) << 4) | /* Tens of minutes */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
128 (tc.tm_min % 10); /* Units of minutes */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
129 buf[4] = (1 << 7) | /* Binary group flag BGF2 */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
130 (1 << 6) | /* Binary group flag BGF1 */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
131 ((tc.tm_hour / 10) << 4) | /* Tens of hours */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
132 (tc.tm_hour % 10); /* Units of hours */
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
133 break;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
134 case dv_audio_source: /* AAUX source pack */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
135 buf[1] = (0 << 7) | /* locked mode */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
136 (1 << 6) | /* reserved -- always 1 */
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
137 (dv_audio_frame_size(c->sys, c->frames) -
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
138 c->sys->audio_min_samples[0]);
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
139 /* # of samples */
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
140 buf[2] = (0 << 7) | /* multi-stereo */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
141 (0 << 5) | /* #of audio channels per block: 0 -- 1 channel */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
142 (0 << 4) | /* pair bit: 0 -- one pair of channels */
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
143 0; /* audio mode */
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
144 buf[3] = (1 << 7) | /* res */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
145 (1 << 6) | /* multi-language flag */
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
146 (c->sys->dsf << 5) | /* system: 60fields/50fields */
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
147 (apt << 1);/* definition: 0 -- 25Mbps, 2 -- 50Mbps */
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
148 buf[4] = (1 << 7) | /* emphasis: 1 -- off */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
149 (0 << 6) | /* emphasis time constant: 0 -- reserved */
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
150 (0 << 3) | /* frequency: 0 -- 48Khz, 1 -- 44,1Khz, 2 -- 32Khz */
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
151 0; /* quantization: 0 -- 16bit linear, 1 -- 12bit nonlinear */
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
152 break;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
153 case dv_audio_control:
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
154 buf[1] = (0 << 6) | /* copy protection: 0 -- unrestricted */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
155 (1 << 4) | /* input source: 1 -- digital input */
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
156 (3 << 2) | /* compression: 3 -- no information */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
157 0; /* misc. info/SMPTE emphasis off */
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
158 buf[2] = (1 << 7) | /* recording start point: 1 -- no */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
159 (1 << 6) | /* recording end point: 1 -- no */
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
160 (1 << 3) | /* recording mode: 1 -- original */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
161 7;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
162 buf[3] = (1 << 7) | /* direction: 1 -- forward */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
163 0x20; /* speed */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
164 buf[4] = (1 << 7) | /* reserved -- always 1 */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
165 0x7f; /* genre category */
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
166 break;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
167 case dv_audio_recdate:
848
928cc1de1256 typo: viedo --> video
diego
parents: 845
diff changeset
168 case dv_video_recdate: /* VAUX recording date */
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
169 ct = c->start_time + (time_t)(c->frames /
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
170 ((float)c->sys->frame_rate / (float)c->sys->frame_rate_base));
515
ad72189eec07 * replacing calls to not-always-available gmtime_r with our own code.
romansh
parents: 508
diff changeset
171 brktimegm(ct, &tc);
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
172 buf[1] = 0xff; /* ds, tm, tens of time zone, units of time zone */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
173 /* 0xff is very likely to be "unknown" */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
174 buf[2] = (3 << 6) | /* reserved -- always 1 */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
175 ((tc.tm_mday / 10) << 4) | /* Tens of day */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
176 (tc.tm_mday % 10); /* Units of day */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
177 buf[3] = /* we set high 4 bits to 0, shouldn't we set them to week? */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
178 ((tc.tm_mon / 10) << 4) | /* Tens of month */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
179 (tc.tm_mon % 10); /* Units of month */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
180 buf[4] = (((tc.tm_year % 100) / 10) << 4) | /* Tens of year */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
181 (tc.tm_year % 10); /* Units of year */
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
182 break;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
183 case dv_audio_rectime: /* AAUX recording time */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
184 case dv_video_rectime: /* VAUX recording time */
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
185 ct = c->start_time + (time_t)(c->frames /
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
186 ((float)c->sys->frame_rate / (float)c->sys->frame_rate_base));
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
187 brktimegm(ct, &tc);
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
188 buf[1] = (3 << 6) | /* reserved -- always 1 */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
189 0x3f; /* tens of frame, units of frame: 0x3f - "unknown" ? */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
190 buf[2] = (1 << 7) | /* reserved -- always 1 */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
191 ((tc.tm_sec / 10) << 4) | /* Tens of seconds */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
192 (tc.tm_sec % 10); /* Units of seconds */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
193 buf[3] = (1 << 7) | /* reserved -- always 1 */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
194 ((tc.tm_min / 10) << 4) | /* Tens of minutes */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
195 (tc.tm_min % 10); /* Units of minutes */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
196 buf[4] = (3 << 6) | /* reserved -- always 1 */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
197 ((tc.tm_hour / 10) << 4) | /* Tens of hours */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
198 (tc.tm_hour % 10); /* Units of hours */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
199 break;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
200 default:
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
201 buf[1] = buf[2] = buf[3] = buf[4] = 0xff;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
202 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
203 return 5;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
204 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
205
1289
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
206 static void dv_inject_audio(DVMuxContext *c, int channel, uint8_t* frame_ptr)
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
207 {
504
cb0b5994f3e0 * fixing a small quirk with DV audio muxing
romansh
parents: 482
diff changeset
208 int i, j, d, of, size;
cb0b5994f3e0 * fixing a small quirk with DV audio muxing
romansh
parents: 482
diff changeset
209 size = 4 * dv_audio_frame_size(c->sys, c->frames);
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
210 frame_ptr += channel * c->sys->difseg_size * 150 * 80;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
211 for (i = 0; i < c->sys->difseg_size; i++) {
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
212 frame_ptr += 6 * 80; /* skip DIF segment header */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
213 for (j = 0; j < 9; j++) {
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
214 dv_write_pack(dv_aaux_packs_dist[i][j], c, &frame_ptr[3]);
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
215 for (d = 8; d < 80; d+=2) {
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
216 of = c->sys->audio_shuffle[i][j] + (d - 8)/2 * c->sys->audio_stride;
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
217 if (of*2 >= size)
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
218 continue;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
219
1289
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
220 frame_ptr[d] = fifo_peek(&c->audio_data[channel], of*2+1); // FIXME: may be we have to admit
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
221 frame_ptr[d+1] = fifo_peek(&c->audio_data[channel], of*2); // that DV is a big endian PCM
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
222 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
223 frame_ptr += 16 * 80; /* 15 Video DIFs + 1 Audio DIF */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
224 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
225 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
226 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
227
1289
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
228 static void dv_inject_metadata(DVMuxContext *c, uint8_t* frame)
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
229 {
1289
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
230 int j, k;
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
231 uint8_t* buf;
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
232
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
233 for (buf = frame; buf < frame + c->sys->frame_size; buf += 150 * 80) {
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
234 /* DV subcode: 2nd and 3d DIFs */
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
235 for (j = 80; j < 80 * 3; j += 80) {
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
236 for (k = 6; k < 6 * 8; k += 8)
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
237 dv_write_pack(dv_timecode, c, &buf[j+k]);
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
238
1289
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
239 if (((long)(buf-frame)/(c->sys->frame_size/(c->sys->difseg_size*c->sys->n_difchan))%c->sys->difseg_size) > 5) { /* FIXME: is this really needed ? */
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
240 dv_write_pack(dv_video_recdate, c, &buf[j+14]);
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
241 dv_write_pack(dv_video_rectime, c, &buf[j+22]);
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
242 dv_write_pack(dv_video_recdate, c, &buf[j+38]);
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
243 dv_write_pack(dv_video_rectime, c, &buf[j+46]);
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
244 }
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
245 }
1289
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
246
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
247 /* DV VAUX: 4th, 5th and 6th 3DIFs */
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
248 for (j = 80*3 + 3; j < 80*6; j += 80) {
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
249 dv_write_pack(dv_video_recdate, c, &buf[j+5*2]);
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
250 dv_write_pack(dv_video_rectime, c, &buf[j+5*3]);
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
251 dv_write_pack(dv_video_recdate, c, &buf[j+5*11]);
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
252 dv_write_pack(dv_video_rectime, c, &buf[j+5*12]);
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
253 }
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
254 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
255 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
256
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
257 /*
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
258 * This is the dumbest implementation of all -- it simply looks at
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
259 * a fixed offset and if pack isn't there -- fails. We might want
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
260 * to have a fallback mechanism for complete search of missing packs.
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
261 */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
262 static const uint8_t* dv_extract_pack(uint8_t* frame, enum dv_pack_type t)
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
263 {
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
264 int offs;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
265
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
266 switch (t) {
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
267 case dv_audio_source:
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
268 offs = (80*6 + 80*16*3 + 3);
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
269 break;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
270 case dv_audio_control:
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
271 offs = (80*6 + 80*16*4 + 3);
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
272 break;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
273 case dv_video_control:
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
274 offs = (80*5 + 48 + 5);
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
275 break;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
276 default:
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
277 return NULL;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
278 }
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
279
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
280 return (frame[offs] == t ? &frame[offs] : NULL);
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
281 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
282
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
283 /*
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
284 * There's a couple of assumptions being made here:
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
285 * 1. By default we silence erroneous (0x8000/16bit 0x800/12bit) audio samples.
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
286 * We can pass them upwards when ffmpeg will be ready to deal with them.
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
287 * 2. We don't do software emphasis.
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
288 * 3. Audio is always returned as 16bit linear samples: 12bit nonlinear samples
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
289 * are converted into 16bit linear ones.
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
290 */
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
291 static int dv_extract_audio(uint8_t* frame, uint8_t* pcm, uint8_t* pcm2,
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
292 const DVprofile *sys)
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
293 {
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
294 int size, chan, i, j, d, of, smpls, freq, quant, half_ch;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
295 uint16_t lc, rc;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
296 const uint8_t* as_pack;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
297
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
298 as_pack = dv_extract_pack(frame, dv_audio_source);
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
299 if (!as_pack) /* No audio ? */
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
300 return 0;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
301
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
302 smpls = as_pack[1] & 0x3f; /* samples in this frame - min. samples */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
303 freq = (as_pack[4] >> 3) & 0x07; /* 0 - 48KHz, 1 - 44,1kHz, 2 - 32 kHz */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
304 quant = as_pack[4] & 0x07; /* 0 - 16bit linear, 1 - 12bit nonlinear */
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
305
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
306 if (quant > 1)
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
307 return -1; /* Unsupported quantization */
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
308
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
309 size = (sys->audio_min_samples[freq] + smpls) * 4; /* 2ch, 2bytes */
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
310 half_ch = sys->difseg_size/2;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
311
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
312 /* for each DIF channel */
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
313 for (chan = 0; chan < sys->n_difchan; chan++) {
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
314 /* for each DIF segment */
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
315 for (i = 0; i < sys->difseg_size; i++) {
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
316 frame += 6 * 80; /* skip DIF segment header */
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
317 if (quant == 1 && i == half_ch) {
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
318 /* next stereo channel (12bit mode only) */
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
319 if (!pcm2)
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
320 break;
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
321 else
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
322 pcm = pcm2;
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
323 }
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
324
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
325 /* for each AV sequence */
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
326 for (j = 0; j < 9; j++) {
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
327 for (d = 8; d < 80; d += 2) {
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
328 if (quant == 0) { /* 16bit quantization */
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
329 of = sys->audio_shuffle[i][j] + (d - 8)/2 * sys->audio_stride;
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
330 if (of*2 >= size)
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
331 continue;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
332
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
333 pcm[of*2] = frame[d+1]; // FIXME: may be we have to admit
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
334 pcm[of*2+1] = frame[d]; // that DV is a big endian PCM
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
335 if (pcm[of*2+1] == 0x80 && pcm[of*2] == 0x00)
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
336 pcm[of*2+1] = 0;
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
337 } else { /* 12bit quantization */
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
338 lc = ((uint16_t)frame[d] << 4) |
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
339 ((uint16_t)frame[d+2] >> 4);
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
340 rc = ((uint16_t)frame[d+1] << 4) |
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
341 ((uint16_t)frame[d+2] & 0x0f);
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
342 lc = (lc == 0x800 ? 0 : dv_audio_12to16(lc));
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
343 rc = (rc == 0x800 ? 0 : dv_audio_12to16(rc));
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
344
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
345 of = sys->audio_shuffle[i%half_ch][j] + (d - 8)/3 * sys->audio_stride;
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
346 if (of*2 >= size)
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
347 continue;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
348
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
349 pcm[of*2] = lc & 0xff; // FIXME: may be we have to admit
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
350 pcm[of*2+1] = lc >> 8; // that DV is a big endian PCM
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
351 of = sys->audio_shuffle[i%half_ch+half_ch][j] +
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
352 (d - 8)/3 * sys->audio_stride;
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
353 pcm[of*2] = rc & 0xff; // FIXME: may be we have to admit
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
354 pcm[of*2+1] = rc >> 8; // that DV is a big endian PCM
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
355 ++d;
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
356 }
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
357 }
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
358
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
359 frame += 16 * 80; /* 15 Video DIFs + 1 Audio DIF */
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
360 }
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
361 }
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
362
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
363 /* next stereo channel (50Mbps only) */
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
364 if(!pcm2)
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
365 break;
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
366 pcm = pcm2;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
367 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
368
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
369 return size;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
370 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
371
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
372 static int dv_extract_audio_info(DVDemuxContext* c, uint8_t* frame)
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
373 {
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
374 const uint8_t* as_pack;
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
375 int freq, stype, smpls, quant, i, ach;
37
8f76666c71c2 DV audio decoder by Roman Shaposhnick
bellard
parents: 28
diff changeset
376
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
377 as_pack = dv_extract_pack(frame, dv_audio_source);
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
378 if (!as_pack || !c->sys) { /* No audio ? */
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
379 c->ach = 0;
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
380 return 0;
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
381 }
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
382
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
383 smpls = as_pack[1] & 0x3f; /* samples in this frame - min. samples */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
384 freq = (as_pack[4] >> 3) & 0x07; /* 0 - 48KHz, 1 - 44,1kHz, 2 - 32 kHz */
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
385 stype = (as_pack[3] & 0x1f); /* 0 - 2CH, 2 - 4CH */
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
386 quant = as_pack[4] & 0x07; /* 0 - 16bit linear, 1 - 12bit nonlinear */
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
387
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
388 /* note: ach counts PAIRS of channels (i.e. stereo channels) */
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
389 ach = (stype == 2 || (quant && (freq == 2))) ? 2 : 1;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
390
532
772247018ade * experimental dynamic audio stream allocation for DV demuxer. This
romansh
parents: 531
diff changeset
391 /* Dynamic handling of the audio streams in DV */
772247018ade * experimental dynamic audio stream allocation for DV demuxer. This
romansh
parents: 531
diff changeset
392 for (i=0; i<ach; i++) {
772247018ade * experimental dynamic audio stream allocation for DV demuxer. This
romansh
parents: 531
diff changeset
393 if (!c->ast[i]) {
772247018ade * experimental dynamic audio stream allocation for DV demuxer. This
romansh
parents: 531
diff changeset
394 c->ast[i] = av_new_stream(c->fctx, 0);
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
395 if (!c->ast[i])
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
396 break;
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
397 av_set_pts_info(c->ast[i], 64, 1, 30000);
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
398 c->ast[i]->codec->codec_type = CODEC_TYPE_AUDIO;
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
399 c->ast[i]->codec->codec_id = CODEC_ID_PCM_S16LE;
562
bf3231dd1d7c * static allocation for audio packets. This will make it a little bit
romansh
parents: 560
diff changeset
400
bf3231dd1d7c * static allocation for audio packets. This will make it a little bit
romansh
parents: 560
diff changeset
401 av_init_packet(&c->audio_pkt[i]);
bf3231dd1d7c * static allocation for audio packets. This will make it a little bit
romansh
parents: 560
diff changeset
402 c->audio_pkt[i].size = 0;
bf3231dd1d7c * static allocation for audio packets. This will make it a little bit
romansh
parents: 560
diff changeset
403 c->audio_pkt[i].data = c->audio_buf[i];
bf3231dd1d7c * static allocation for audio packets. This will make it a little bit
romansh
parents: 560
diff changeset
404 c->audio_pkt[i].stream_index = c->ast[i]->index;
bf3231dd1d7c * static allocation for audio packets. This will make it a little bit
romansh
parents: 560
diff changeset
405 c->audio_pkt[i].flags |= PKT_FLAG_KEY;
532
772247018ade * experimental dynamic audio stream allocation for DV demuxer. This
romansh
parents: 531
diff changeset
406 }
820
feca73904e67 changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents: 764
diff changeset
407 c->ast[i]->codec->sample_rate = dv_audio_frequency[freq];
feca73904e67 changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents: 764
diff changeset
408 c->ast[i]->codec->channels = 2;
feca73904e67 changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents: 764
diff changeset
409 c->ast[i]->codec->bit_rate = 2 * dv_audio_frequency[freq] * 16;
532
772247018ade * experimental dynamic audio stream allocation for DV demuxer. This
romansh
parents: 531
diff changeset
410 c->ast[i]->start_time = 0;
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
411 }
532
772247018ade * experimental dynamic audio stream allocation for DV demuxer. This
romansh
parents: 531
diff changeset
412 c->ach = i;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
413
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
414 return (c->sys->audio_min_samples[freq] + smpls) * 4; /* 2ch, 2bytes */;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
415 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
416
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
417 static int dv_extract_video_info(DVDemuxContext *c, uint8_t* frame)
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
418 {
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
419 const uint8_t* vsc_pack;
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
420 AVCodecContext* avctx;
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
421 int apt, is16_9;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
422 int size = 0;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
423
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
424 if (c->sys) {
820
feca73904e67 changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents: 764
diff changeset
425 avctx = c->vst->codec;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
426
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
427 av_set_pts_info(c->vst, 64, c->sys->frame_rate_base, c->sys->frame_rate);
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
428 avctx->time_base= (AVRational){c->sys->frame_rate_base, c->sys->frame_rate};
845
e4e8c395d8e9 lowres support
michael
parents: 820
diff changeset
429 if(!avctx->width){
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
430 avctx->width = c->sys->width;
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
431 avctx->height = c->sys->height;
845
e4e8c395d8e9 lowres support
michael
parents: 820
diff changeset
432 }
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
433 avctx->pix_fmt = c->sys->pix_fmt;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
434
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
435 /* finding out SAR is a little bit messy */
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
436 vsc_pack = dv_extract_pack(frame, dv_video_control);
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
437 apt = frame[4] & 0x07;
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
438 is16_9 = (vsc_pack && ((vsc_pack[2] & 0x07) == 0x02 ||
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
439 (!apt && (vsc_pack[2] & 0x07) == 0x07)));
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
440 avctx->sample_aspect_ratio = c->sys->sar[is16_9];
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
441 avctx->bit_rate = av_rescale(c->sys->frame_size * 8,
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
442 c->sys->frame_rate,
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
443 c->sys->frame_rate_base);
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
444 size = c->sys->frame_size;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
445 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
446 return size;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
447 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
448
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
449 /*
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
450 * The following 6 functions constitute our interface to the world
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
451 */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
452
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
453 int dv_assemble_frame(DVMuxContext *c, AVStream* st,
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
454 const uint8_t* data, int data_size, uint8_t** frame)
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
455 {
1289
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
456 int i, reqasize;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
457
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
458 *frame = &c->frame_buf[0];
1289
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
459 reqasize = 4 * dv_audio_frame_size(c->sys, c->frames);
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
460
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
461 switch (st->codec->codec_type) {
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
462 case CODEC_TYPE_VIDEO:
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
463 /* FIXME: we have to have more sensible approach than this one */
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
464 if (c->has_video)
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
465 av_log(st->codec, AV_LOG_ERROR, "Can't process DV frame #%d. Insufficient audio data or severe sync problem.\n", c->frames);
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
466
1289
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
467 memcpy(*frame, data, c->sys->frame_size);
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
468 c->has_video = 1;
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
469 break;
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
470 case CODEC_TYPE_AUDIO:
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
471 for (i = 0; i < c->n_ast && st != c->ast[i]; i++);
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
472
1289
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
473 /* FIXME: we have to have more sensible approach than this one */
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
474 if (fifo_size(&c->audio_data[i], c->audio_data[i].rptr) + data_size >= 100*AVCODEC_MAX_AUDIO_FRAME_SIZE)
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
475 av_log(st->codec, AV_LOG_ERROR, "Can't process DV frame #%d. Insufficient video data or severe sync problem.\n", c->frames);
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
476 fifo_write(&c->audio_data[i], data, data_size, &c->audio_data[i].wptr);
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
477
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
478 /* Lets see if we've got enough audio for one DV frame */
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
479 c->has_audio |= ((reqasize <= fifo_size(&c->audio_data[i], c->audio_data[i].rptr)) << i);
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
480
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
481 break;
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
482 default:
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
483 break;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
484 }
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
485
1289
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
486 /* Lets see if we have enough data to construct one DV frame */
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
487 if (c->has_video == 1 && c->has_audio + 1 == 1<<c->n_ast) {
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
488 dv_inject_metadata(c, *frame);
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
489 for (i=0; i<c->n_ast; i++) {
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
490 dv_inject_audio(c, i, *frame);
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
491 fifo_drain(&c->audio_data[i], reqasize);
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
492 }
1289
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
493
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
494 c->has_video = 0;
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
495 c->has_audio = 0;
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
496 c->frames++;
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
497
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
498 return c->sys->frame_size;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
499 }
1289
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
500
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
501 return 0;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
502 }
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
503
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
504 DVMuxContext* dv_init_mux(AVFormatContext* s)
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
505 {
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
506 DVMuxContext *c;
531
2af447b91329 * let DV muxer generate audioless DV streams. This might not be 100%
romansh
parents: 528
diff changeset
507 AVStream *vst = NULL;
2af447b91329 * let DV muxer generate audioless DV streams. This might not be 100%
romansh
parents: 528
diff changeset
508 int i;
2af447b91329 * let DV muxer generate audioless DV streams. This might not be 100%
romansh
parents: 528
diff changeset
509
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
510 /* we support at most 1 video and 2 audio streams */
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
511 if (s->nb_streams > 3)
531
2af447b91329 * let DV muxer generate audioless DV streams. This might not be 100%
romansh
parents: 528
diff changeset
512 return NULL;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
513
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
514 c = av_mallocz(sizeof(DVMuxContext));
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
515 if (!c)
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
516 return NULL;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
517
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
518 c->n_ast = 0;
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
519 c->ast[0] = c->ast[1] = NULL;
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
520
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
521 /* We have to sort out where audio and where video stream is */
531
2af447b91329 * let DV muxer generate audioless DV streams. This might not be 100%
romansh
parents: 528
diff changeset
522 for (i=0; i<s->nb_streams; i++) {
820
feca73904e67 changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents: 764
diff changeset
523 switch (s->streams[i]->codec->codec_type) {
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
524 case CODEC_TYPE_VIDEO:
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
525 vst = s->streams[i];
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
526 break;
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
527 case CODEC_TYPE_AUDIO:
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
528 c->ast[c->n_ast++] = s->streams[i];
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
529 break;
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
530 default:
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
531 goto bail_out;
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
532 }
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
533 }
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
534
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
535 /* Some checks -- DV format is very picky about its incoming streams */
820
feca73904e67 changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents: 764
diff changeset
536 if (!vst || vst->codec->codec_id != CODEC_ID_DVVIDEO)
531
2af447b91329 * let DV muxer generate audioless DV streams. This might not be 100%
romansh
parents: 528
diff changeset
537 goto bail_out;
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
538 for (i=0; i<c->n_ast; i++) {
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
539 if (c->ast[i] && (c->ast[i]->codec->codec_id != CODEC_ID_PCM_S16LE ||
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
540 c->ast[i]->codec->sample_rate != 48000 ||
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
541 c->ast[i]->codec->channels != 2))
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
542 goto bail_out;
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
543 }
820
feca73904e67 changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents: 764
diff changeset
544 c->sys = dv_codec_profile(vst->codec);
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
545 if (!c->sys)
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
546 goto bail_out;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
547
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
548 if((c->n_ast > 1) && (c->sys->n_difchan < 2)) {
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
549 /* only 1 stereo pair is allowed in 25Mbps mode */
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
550 goto bail_out;
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
551 }
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
552
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
553 /* Ok, everything seems to be in working order */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
554 c->frames = 0;
1289
6db39fb15d60 * Restructuring the division of labor between DV codec and DV format
romansh
parents: 1169
diff changeset
555 c->has_audio = 0;
531
2af447b91329 * let DV muxer generate audioless DV streams. This might not be 100%
romansh
parents: 528
diff changeset
556 c->has_video = 0;
420
e440fb884442 * making it possible to specify recording date and time in a stream
romansh
parents: 417
diff changeset
557 c->start_time = (time_t)s->timestamp;
37
8f76666c71c2 DV audio decoder by Roman Shaposhnick
bellard
parents: 28
diff changeset
558
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
559 for (i=0; i<c->n_ast; i++) {
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
560 if (c->ast[i] && fifo_init(&c->audio_data[i], 100*AVCODEC_MAX_AUDIO_FRAME_SIZE) < 0) {
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
561 while (i>0) {
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
562 i--;
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
563 fifo_free(&c->audio_data[i]);
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
564 }
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
565 goto bail_out;
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
566 }
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
567 }
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
568
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
569 return c;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
570
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
571 bail_out:
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
572 av_free(c);
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
573 return NULL;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
574 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
575
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
576 void dv_delete_mux(DVMuxContext *c)
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
577 {
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
578 int i;
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
579 for (i=0; i < c->n_ast; i++)
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
580 fifo_free(&c->audio_data[i]);
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
581 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
582
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
583 DVDemuxContext* dv_init_demux(AVFormatContext *s)
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
584 {
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
585 DVDemuxContext *c;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
586
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
587 c = av_mallocz(sizeof(DVDemuxContext));
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
588 if (!c)
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
589 return NULL;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
590
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
591 c->vst = av_new_stream(s, 0);
532
772247018ade * experimental dynamic audio stream allocation for DV demuxer. This
romansh
parents: 531
diff changeset
592 if (!c->vst) {
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
593 av_free(c);
532
772247018ade * experimental dynamic audio stream allocation for DV demuxer. This
romansh
parents: 531
diff changeset
594 return NULL;
772247018ade * experimental dynamic audio stream allocation for DV demuxer. This
romansh
parents: 531
diff changeset
595 }
462
b69898ffc92a move time_base (pts_num/pts_den) from AVFormatContext -> AVStream
michael
parents: 460
diff changeset
596
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
597 c->sys = NULL;
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
598 c->fctx = s;
532
772247018ade * experimental dynamic audio stream allocation for DV demuxer. This
romansh
parents: 531
diff changeset
599 c->ast[0] = c->ast[1] = NULL;
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
600 c->ach = 0;
392
caf266cfadaf * enabling seek in raw DV files
romansh
parents: 384
diff changeset
601 c->frames = 0;
caf266cfadaf * enabling seek in raw DV files
romansh
parents: 384
diff changeset
602 c->abytes = 0;
562
bf3231dd1d7c * static allocation for audio packets. This will make it a little bit
romansh
parents: 560
diff changeset
603
820
feca73904e67 changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents: 764
diff changeset
604 c->vst->codec->codec_type = CODEC_TYPE_VIDEO;
feca73904e67 changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents: 764
diff changeset
605 c->vst->codec->codec_id = CODEC_ID_DVVIDEO;
feca73904e67 changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents: 764
diff changeset
606 c->vst->codec->bit_rate = 25000000;
524
0b9dfb0cddc8 * misc. fixes and hacks to improve timing detection in raw DV
romansh
parents: 523
diff changeset
607 c->vst->start_time = 0;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
608
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
609 return c;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
610 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
611
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
612 int dv_get_packet(DVDemuxContext *c, AVPacket *pkt)
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
613 {
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
614 int size = -1;
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
615 int i;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
616
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
617 for (i=0; i<c->ach; i++) {
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
618 if (c->ast[i] && c->audio_pkt[i].size) {
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
619 *pkt = c->audio_pkt[i];
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
620 c->audio_pkt[i].size = 0;
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
621 size = pkt->size;
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
622 break;
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
623 }
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
624 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
625
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
626 return size;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
627 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
628
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
629 int dv_produce_packet(DVDemuxContext *c, AVPacket *pkt,
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
630 uint8_t* buf, int buf_size)
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
631 {
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
632 int size, i;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
633
1048
da22d8928247 * fixing DV-in-AVI type1 packet production bug
romansh
parents: 995
diff changeset
634 if (buf_size < DV_PROFILE_BYTES ||
da22d8928247 * fixing DV-in-AVI type1 packet production bug
romansh
parents: 995
diff changeset
635 !(c->sys = dv_frame_profile(buf)) ||
da22d8928247 * fixing DV-in-AVI type1 packet production bug
romansh
parents: 995
diff changeset
636 buf_size < c->sys->frame_size) {
da22d8928247 * fixing DV-in-AVI type1 packet production bug
romansh
parents: 995
diff changeset
637 return -1; /* Broken frame, or not enough data */
da22d8928247 * fixing DV-in-AVI type1 packet production bug
romansh
parents: 995
diff changeset
638 }
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
639
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
640 /* Queueing audio packet */
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
641 /* FIXME: in case of no audio/bad audio we have to do something */
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
642 size = dv_extract_audio_info(c, buf);
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
643 for (i=0; i<c->ach; i++) {
562
bf3231dd1d7c * static allocation for audio packets. This will make it a little bit
romansh
parents: 560
diff changeset
644 c->audio_pkt[i].size = size;
820
feca73904e67 changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents: 764
diff changeset
645 c->audio_pkt[i].pts = c->abytes * 30000*8 / c->ast[i]->codec->bit_rate;
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
646 }
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
647 dv_extract_audio(buf, c->audio_buf[0], c->audio_buf[1], c->sys);
392
caf266cfadaf * enabling seek in raw DV files
romansh
parents: 384
diff changeset
648 c->abytes += size;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
649
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
650 /* Now it's time to return video packet */
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
651 size = dv_extract_video_info(c, buf);
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
652 av_init_packet(pkt);
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
653 pkt->data = buf;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
654 pkt->size = size;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
655 pkt->flags |= PKT_FLAG_KEY;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
656 pkt->stream_index = c->vst->id;
741
56cf208ff0d0 fix nonsense timestamp mess
michael
parents: 562
diff changeset
657 pkt->pts = c->frames;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
658
392
caf266cfadaf * enabling seek in raw DV files
romansh
parents: 384
diff changeset
659 c->frames++;
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
660
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
661 return size;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
662 }
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
663
559
f5f85a07fafe flags, rounding and cliping fix by (Nathan Kurz <nate at verse dot com>)
michael
parents: 532
diff changeset
664 static int64_t dv_frame_offset(AVFormatContext *s, DVDemuxContext *c,
f5f85a07fafe flags, rounding and cliping fix by (Nathan Kurz <nate at verse dot com>)
michael
parents: 532
diff changeset
665 int64_t timestamp, int flags)
392
caf266cfadaf * enabling seek in raw DV files
romansh
parents: 384
diff changeset
666 {
523
d788959a01e2 * seek in raw DV patch by Nathan Kurz (nate at verse dot com)
romansh
parents: 515
diff changeset
667 // FIXME: sys may be wrong if last dv_read_packet() failed (buffer is junk)
820
feca73904e67 changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents: 764
diff changeset
668 const DVprofile* sys = dv_codec_profile(c->vst->codec);
741
56cf208ff0d0 fix nonsense timestamp mess
michael
parents: 562
diff changeset
669 int64_t offset;
764
cdb845a57ae4 drop most url_fileno() calls (allows to use ByteIOContext directly in caller apps instead of URLProtocol)
aurel
parents: 743
diff changeset
670 int64_t size = url_fsize(&s->pb);
559
f5f85a07fafe flags, rounding and cliping fix by (Nathan Kurz <nate at verse dot com>)
michael
parents: 532
diff changeset
671 int64_t max_offset = ((size-1) / sys->frame_size) * sys->frame_size;
392
caf266cfadaf * enabling seek in raw DV files
romansh
parents: 384
diff changeset
672
741
56cf208ff0d0 fix nonsense timestamp mess
michael
parents: 562
diff changeset
673 offset = sys->frame_size * timestamp;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
674
559
f5f85a07fafe flags, rounding and cliping fix by (Nathan Kurz <nate at verse dot com>)
michael
parents: 532
diff changeset
675 if (offset > max_offset) offset = max_offset;
f5f85a07fafe flags, rounding and cliping fix by (Nathan Kurz <nate at verse dot com>)
michael
parents: 532
diff changeset
676 else if (offset < 0) offset = 0;
523
d788959a01e2 * seek in raw DV patch by Nathan Kurz (nate at verse dot com)
romansh
parents: 515
diff changeset
677
d788959a01e2 * seek in raw DV patch by Nathan Kurz (nate at verse dot com)
romansh
parents: 515
diff changeset
678 return offset;
392
caf266cfadaf * enabling seek in raw DV files
romansh
parents: 384
diff changeset
679 }
caf266cfadaf * enabling seek in raw DV files
romansh
parents: 384
diff changeset
680
562
bf3231dd1d7c * static allocation for audio packets. This will make it a little bit
romansh
parents: 560
diff changeset
681 void dv_flush_audio_packets(DVDemuxContext *c)
bf3231dd1d7c * static allocation for audio packets. This will make it a little bit
romansh
parents: 560
diff changeset
682 {
bf3231dd1d7c * static allocation for audio packets. This will make it a little bit
romansh
parents: 560
diff changeset
683 c->audio_pkt[0].size = c->audio_pkt[1].size = 0;
bf3231dd1d7c * static allocation for audio packets. This will make it a little bit
romansh
parents: 560
diff changeset
684 }
bf3231dd1d7c * static allocation for audio packets. This will make it a little bit
romansh
parents: 560
diff changeset
685
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
686 /************************************************************
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
687 * Implementation of the easiest DV storage of all -- raw DV.
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
688 ************************************************************/
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
689
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
690 typedef struct RawDVContext {
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
691 DVDemuxContext* dv_demux;
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
692 uint8_t buf[DV_MAX_FRAME_SIZE];
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
693 } RawDVContext;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
694
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
695 static int dv_read_header(AVFormatContext *s,
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
696 AVFormatParameters *ap)
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
697 {
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
698 RawDVContext *c = s->priv_data;
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
699
296
252946de6d3f * DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents: 288
diff changeset
700 c->dv_demux = dv_init_demux(s);
524
0b9dfb0cddc8 * misc. fixes and hacks to improve timing detection in raw DV
romansh
parents: 523
diff changeset
701 if (!c->dv_demux)
0b9dfb0cddc8 * misc. fixes and hacks to improve timing detection in raw DV
romansh
parents: 523
diff changeset
702 return -1;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
703
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
704 if (get_buffer(&s->pb, c->buf, DV_PROFILE_BYTES) <= 0 ||
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
705 url_fseek(&s->pb, -DV_PROFILE_BYTES, SEEK_CUR) < 0)
524
0b9dfb0cddc8 * misc. fixes and hacks to improve timing detection in raw DV
romansh
parents: 523
diff changeset
706 return AVERROR_IO;
0b9dfb0cddc8 * misc. fixes and hacks to improve timing detection in raw DV
romansh
parents: 523
diff changeset
707
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
708 c->dv_demux->sys = dv_frame_profile(c->buf);
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
709 s->bit_rate = av_rescale(c->dv_demux->sys->frame_size * 8,
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
710 c->dv_demux->sys->frame_rate,
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
711 c->dv_demux->sys->frame_rate_base);
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
712
524
0b9dfb0cddc8 * misc. fixes and hacks to improve timing detection in raw DV
romansh
parents: 523
diff changeset
713 return 0;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
714 }
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
715
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
716
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
717 static int dv_read_packet(AVFormatContext *s, AVPacket *pkt)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
718 {
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
719 int size;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
720 RawDVContext *c = s->priv_data;
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
721
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
722 size = dv_get_packet(c->dv_demux, pkt);
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
723
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
724 if (size < 0) {
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
725 size = c->dv_demux->sys->frame_size;
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
726 if (get_buffer(&s->pb, c->buf, size) <= 0)
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
727 return AVERROR_IO;
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
728
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
729 size = dv_produce_packet(c->dv_demux, pkt, c->buf, size);
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
730 }
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
731
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
732 return size;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
733 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
734
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
735 static int dv_read_seek(AVFormatContext *s, int stream_index,
559
f5f85a07fafe flags, rounding and cliping fix by (Nathan Kurz <nate at verse dot com>)
michael
parents: 532
diff changeset
736 int64_t timestamp, int flags)
392
caf266cfadaf * enabling seek in raw DV files
romansh
parents: 384
diff changeset
737 {
559
f5f85a07fafe flags, rounding and cliping fix by (Nathan Kurz <nate at verse dot com>)
michael
parents: 532
diff changeset
738 RawDVContext *r = s->priv_data;
f5f85a07fafe flags, rounding and cliping fix by (Nathan Kurz <nate at verse dot com>)
michael
parents: 532
diff changeset
739 DVDemuxContext *c = r->dv_demux;
f5f85a07fafe flags, rounding and cliping fix by (Nathan Kurz <nate at verse dot com>)
michael
parents: 532
diff changeset
740 int64_t offset= dv_frame_offset(s, c, timestamp, flags);
392
caf266cfadaf * enabling seek in raw DV files
romansh
parents: 384
diff changeset
741
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
742 c->frames= offset / c->sys->frame_size;
562
bf3231dd1d7c * static allocation for audio packets. This will make it a little bit
romansh
parents: 560
diff changeset
743 if (c->ach)
bf3231dd1d7c * static allocation for audio packets. This will make it a little bit
romansh
parents: 560
diff changeset
744 c->abytes= av_rescale(c->frames,
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
745 c->ast[0]->codec->bit_rate * (int64_t)c->sys->frame_rate_base,
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
746 8*c->sys->frame_rate);
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
747
562
bf3231dd1d7c * static allocation for audio packets. This will make it a little bit
romansh
parents: 560
diff changeset
748 dv_flush_audio_packets(c);
559
f5f85a07fafe flags, rounding and cliping fix by (Nathan Kurz <nate at verse dot com>)
michael
parents: 532
diff changeset
749 return url_fseek(&s->pb, offset, SEEK_SET);
392
caf266cfadaf * enabling seek in raw DV files
romansh
parents: 384
diff changeset
750 }
caf266cfadaf * enabling seek in raw DV files
romansh
parents: 384
diff changeset
751
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
752 static int dv_read_close(AVFormatContext *s)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
753 {
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
754 RawDVContext *c = s->priv_data;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
755 av_free(c->dv_demux);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
756 return 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
757 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
758
903
68bc3ca12e79 Put muxer-specific code parts in #ifdef CONFIG_MUXERS.
diego
parents: 896
diff changeset
759 #ifdef CONFIG_MUXERS
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
760 static int dv_write_header(AVFormatContext *s)
203
184d22d04c84 * Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents: 119
diff changeset
761 {
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
762 s->priv_data = dv_init_mux(s);
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
763 if (!s->priv_data) {
370
845f9de2c883 av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents: 363
diff changeset
764 av_log(s, AV_LOG_ERROR, "Can't initialize DV format!\n"
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
765 "Make sure that you supply exactly two streams:\n"
995
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
766 " video: 25fps or 29.97fps, audio: 2ch/48Khz/PCM\n"
c459e0d4b0b9 DVCPRO50 support.
romansh
parents: 933
diff changeset
767 " (50Mbps allows an optional second audio stream)\n");
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
768 return -1;
203
184d22d04c84 * Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents: 119
diff changeset
769 }
184d22d04c84 * Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents: 119
diff changeset
770 return 0;
184d22d04c84 * Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents: 119
diff changeset
771 }
184d22d04c84 * Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents: 119
diff changeset
772
468
60f897e8dd2d pass AVPacket into av_write_frame()
michael
parents: 462
diff changeset
773 static int dv_write_packet(struct AVFormatContext *s, AVPacket *pkt)
203
184d22d04c84 * Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents: 119
diff changeset
774 {
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
775 uint8_t* frame;
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
776 int fsize;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
777
468
60f897e8dd2d pass AVPacket into av_write_frame()
michael
parents: 462
diff changeset
778 fsize = dv_assemble_frame((DVMuxContext *)s->priv_data, s->streams[pkt->stream_index],
60f897e8dd2d pass AVPacket into av_write_frame()
michael
parents: 462
diff changeset
779 pkt->data, pkt->size, &frame);
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
780 if (fsize > 0) {
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
781 put_buffer(&s->pb, frame, fsize);
203
184d22d04c84 * Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents: 119
diff changeset
782 put_flush_packet(&s->pb);
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
783 }
363
efd9dfe4f504 * turns out write_packet is supposed to return 0 on success, not
romansh
parents: 296
diff changeset
784 return 0;
203
184d22d04c84 * Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents: 119
diff changeset
785 }
184d22d04c84 * Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents: 119
diff changeset
786
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
787 /*
203
184d22d04c84 * Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents: 119
diff changeset
788 * We might end up with some extra A/V data without matching counterpart.
184d22d04c84 * Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents: 119
diff changeset
789 * E.g. video data without enough audio to write the complete frame.
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 848
diff changeset
790 * Currently we simply drop the last frame. I don't know whether this
203
184d22d04c84 * Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents: 119
diff changeset
791 * is the best strategy of all
184d22d04c84 * Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents: 119
diff changeset
792 */
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
793 static int dv_write_trailer(struct AVFormatContext *s)
203
184d22d04c84 * Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents: 119
diff changeset
794 {
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
795 dv_delete_mux((DVMuxContext *)s->priv_data);
203
184d22d04c84 * Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents: 119
diff changeset
796 return 0;
184d22d04c84 * Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents: 119
diff changeset
797 }
903
68bc3ca12e79 Put muxer-specific code parts in #ifdef CONFIG_MUXERS.
diego
parents: 896
diff changeset
798 #endif /* CONFIG_MUXERS */
203
184d22d04c84 * Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents: 119
diff changeset
799
1169
d18cc9a1fd02 allow individual selection of muxers and demuxers
mru
parents: 1167
diff changeset
800 #ifdef CONFIG_DV_DEMUXER
d18cc9a1fd02 allow individual selection of muxers and demuxers
mru
parents: 1167
diff changeset
801 AVInputFormat dv_demuxer = {
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
802 "dv",
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
803 "DV video format",
262
f174d9c00bce * DV handling was streamlined for both muxing/demuxing and
romansh
parents: 241
diff changeset
804 sizeof(RawDVContext),
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
805 NULL,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
806 dv_read_header,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
807 dv_read_packet,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
808 dv_read_close,
392
caf266cfadaf * enabling seek in raw DV files
romansh
parents: 384
diff changeset
809 dv_read_seek,
393
946a9d65206c * turns out raw DV files can have .dif extension
romansh
parents: 392
diff changeset
810 .extensions = "dv,dif",
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
811 };
1169
d18cc9a1fd02 allow individual selection of muxers and demuxers
mru
parents: 1167
diff changeset
812 #endif
d18cc9a1fd02 allow individual selection of muxers and demuxers
mru
parents: 1167
diff changeset
813 #ifdef CONFIG_DV_MUXER
d18cc9a1fd02 allow individual selection of muxers and demuxers
mru
parents: 1167
diff changeset
814 AVOutputFormat dv_muxer = {
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
815 "dv",
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
816 "DV video format",
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
817 NULL,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
818 "dv",
203
184d22d04c84 * Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents: 119
diff changeset
819 sizeof(DVMuxContext),
184d22d04c84 * Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
romansh
parents: 119
diff changeset
820 CODEC_ID_PCM_S16LE,
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
821 CODEC_ID_DVVIDEO,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
822 dv_write_header,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
823 dv_write_packet,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
824 dv_write_trailer,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
825 };
903
68bc3ca12e79 Put muxer-specific code parts in #ifdef CONFIG_MUXERS.
diego
parents: 896
diff changeset
826 #endif