annotate avienc.c @ 155:78a13c7b7d49 libavformat

pal vs ntsc fix by stoyan k <stoyan@i-space.org>
author al3x
date Fri, 20 Jun 2003 15:30:14 +0000
parents 46e80c40ab9f
children 700b69d00b27
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1 /*
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
2 * AVI encoder.
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
3 * Copyright (c) 2000 Fabrice Bellard.
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
4 *
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
5 * This library is free software; you can redistribute it and/or
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
6 * modify it under the terms of the GNU Lesser General Public
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
7 * License as published by the Free Software Foundation; either
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
8 * version 2 of the License, or (at your option) any later version.
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
9 *
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
10 * This library is distributed in the hope that it will be useful,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
13 * Lesser General Public License for more details.
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
14 *
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
15 * You should have received a copy of the GNU Lesser General Public
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
16 * License along with this library; if not, write to the Free Software
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
18 */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
19 #include "avformat.h"
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
20 #include "avi.h"
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
21
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
22 /*
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
23 * TODO:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
24 * - fill all fields if non streamed (nb_frames for example)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
25 */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
26
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
27 typedef struct AVIIentry {
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
28 unsigned int flags, pos, len;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
29 } AVIIentry;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
30
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
31 #define AVI_INDEX_CLUSTER_SIZE 16384
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
32
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
33 typedef struct AVIIndex {
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
34 offset_t indx_start;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
35 int entry;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
36 int ents_allocated;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
37 AVIIentry** cluster;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
38 } AVIIndex;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
39
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
40 typedef struct {
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
41 offset_t riff_start, movi_list, odml_list;
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
42 offset_t frames_hdr_all, frames_hdr_strm[MAX_STREAMS];
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
43 int audio_strm_length[MAX_STREAMS];
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
44 int riff_id;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
45
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
46 AVIIndex indexes[MAX_STREAMS];
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
47 } AVIContext;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
48
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
49 static inline AVIIentry* avi_get_ientry(AVIIndex* idx, int ent_id)
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
50 {
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
51 int cl = ent_id / AVI_INDEX_CLUSTER_SIZE;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
52 int id = ent_id % AVI_INDEX_CLUSTER_SIZE;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
53 return &idx->cluster[cl][id];
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
54 }
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
55
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
56 offset_t start_tag(ByteIOContext *pb, const char *tag)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
57 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
58 put_tag(pb, tag);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
59 put_le32(pb, 0);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
60 return url_ftell(pb);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
61 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
62
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
63 void end_tag(ByteIOContext *pb, offset_t start)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
64 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
65 offset_t pos;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
66
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
67 pos = url_ftell(pb);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
68 url_fseek(pb, start - 4, SEEK_SET);
65
a58a8a53eb46 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 61
diff changeset
69 put_le32(pb, (uint32_t)(pos - start));
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
70 url_fseek(pb, pos, SEEK_SET);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
71 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
72
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
73 /* Note: when encoding, the first matching tag is used, so order is
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
74 important if multiple tags possible for a given codec. */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
75 const CodecTag codec_bmp_tags[] = {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
76 { CODEC_ID_H263, MKTAG('H', '2', '6', '3') },
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
77 { CODEC_ID_H263P, MKTAG('H', '2', '6', '3') },
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
78 { CODEC_ID_H263I, MKTAG('I', '2', '6', '3') }, /* intel h263 */
90
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
79
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
80 /* added based on MPlayer */
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
81 { CODEC_ID_H263I, MKTAG('i', '2', '6', '3') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
82 { CODEC_ID_H263P, MKTAG('U', '2', '6', '3') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
83 { CODEC_ID_H263P, MKTAG('h', '2', '6', '3') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
84 { CODEC_ID_H263P, MKTAG('v', 'i', 'v', '1') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
85
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
86 { CODEC_ID_MJPEG, MKTAG('M', 'J', 'P', 'G') },
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
87 { CODEC_ID_MPEG4, MKTAG('D', 'I', 'V', 'X'), .invalid_asf = 1 },
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
88 { CODEC_ID_MPEG4, MKTAG('d', 'i', 'v', 'x'), .invalid_asf = 1 },
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
89 { CODEC_ID_MPEG4, MKTAG('D', 'X', '5', '0'), .invalid_asf = 1 },
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
90 { CODEC_ID_MPEG4, MKTAG('X', 'V', 'I', 'D'), .invalid_asf = 1 },
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
91 { CODEC_ID_MPEG4, MKTAG('x', 'v', 'i', 'd'), .invalid_asf = 1 },
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
92 { CODEC_ID_MPEG4, MKTAG('m', 'p', '4', 's'), .invalid_asf = 1 },
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
93 { CODEC_ID_MPEG4, MKTAG('M', 'P', '4', 'S') },
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
94 { CODEC_ID_MPEG4, MKTAG('M', '4', 'S', '2') },
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
95 { CODEC_ID_MPEG4, MKTAG('m', '4', 's', '2') },
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
96 { CODEC_ID_MPEG4, MKTAG(0x04, 0, 0, 0) }, /* some broken avi use this */
90
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
97
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
98 /* added based on MPlayer */
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
99 { CODEC_ID_MPEG4, MKTAG('D', 'I', 'V', '1') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
100 { CODEC_ID_MPEG4, MKTAG('d', 'i', 'v', '1') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
101 { CODEC_ID_MPEG4, MKTAG('X', 'v', 'i', 'D') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
102 { CODEC_ID_MPEG4, MKTAG('B', 'L', 'Z', '0') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
103 { CODEC_ID_MPEG4, MKTAG('m', 'p', '4', 'v') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
104 { CODEC_ID_MPEG4, MKTAG('U', 'M', 'P', '4') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
105
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
106 { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '3'), .invalid_asf = 1 }, /* default signature when using MSMPEG4 */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
107 { CODEC_ID_MSMPEG4V3, MKTAG('d', 'i', 'v', '3'), .invalid_asf = 1 },
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
108 { CODEC_ID_MSMPEG4V3, MKTAG('M', 'P', '4', '3') },
90
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
109
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
110 /* added based on MPlayer */
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
111 { CODEC_ID_MSMPEG4V3, MKTAG('M', 'P', 'G', '3') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
112 { CODEC_ID_MSMPEG4V3, MKTAG('m', 'p', 'g', '3') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
113 { CODEC_ID_MSMPEG4V3, MKTAG('m', 'p', '4', '3') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
114 { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '5') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
115 { CODEC_ID_MSMPEG4V3, MKTAG('d', 'i', 'v', '5') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
116 { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '6') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
117 { CODEC_ID_MSMPEG4V3, MKTAG('d', 'i', 'v', '6') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
118 { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '4') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
119 { CODEC_ID_MSMPEG4V3, MKTAG('d', 'i', 'v', '4') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
120 { CODEC_ID_MSMPEG4V3, MKTAG('A', 'P', '4', '1') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
121 { CODEC_ID_MSMPEG4V3, MKTAG('C', 'O', 'L', '1') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
122 { CODEC_ID_MSMPEG4V3, MKTAG('c', 'o', 'l', '1') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
123 { CODEC_ID_MSMPEG4V3, MKTAG('C', 'O', 'L', '0') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
124 { CODEC_ID_MSMPEG4V3, MKTAG('c', 'o', 'l', '0') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
125
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
126 { CODEC_ID_MSMPEG4V2, MKTAG('M', 'P', '4', '2') },
90
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
127
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
128 /* added based on MPlayer */
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
129 { CODEC_ID_MSMPEG4V2, MKTAG('D', 'I', 'V', '2') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
130 { CODEC_ID_MSMPEG4V2, MKTAG('d', 'i', 'v', '2') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
131 { CODEC_ID_MSMPEG4V2, MKTAG('m', 'p', '4', '2') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
132
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
133 { CODEC_ID_MSMPEG4V1, MKTAG('M', 'P', 'G', '4') },
90
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
134
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
135 /* added based on MPlayer */
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
136 { CODEC_ID_MSMPEG4V1, MKTAG('D', 'I', 'V', '4') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
137 { CODEC_ID_MSMPEG4V1, MKTAG('d', 'i', 'v', '4') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
138 { CODEC_ID_MSMPEG4V1, MKTAG('m', 'p', 'g', '4') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
139
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
140 { CODEC_ID_WMV1, MKTAG('W', 'M', 'V', '1') },
90
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
141
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
142 /* added based on MPlayer */
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
143 { CODEC_ID_WMV1, MKTAG('w', 'm', 'v', '1') },
27d6df9208d4 merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents: 89
diff changeset
144
77
f416fa1f5f1c wmv2 & huffyuv regression test
michaelni
parents: 76
diff changeset
145 { CODEC_ID_WMV2, MKTAG('W', 'M', 'V', '2') },
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
146 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 's', 'd') },
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
147 { CODEC_ID_DVVIDEO, MKTAG('D', 'V', 'S', 'D') },
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
148 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'h', 'd') },
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
149 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 's', 'l') },
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
150 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', '2', '5') },
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
151 { CODEC_ID_MPEG1VIDEO, MKTAG('m', 'p', 'g', '1') },
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
152 { CODEC_ID_MPEG1VIDEO, MKTAG('m', 'p', 'g', '2') },
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
153 { CODEC_ID_MPEG1VIDEO, MKTAG('P', 'I', 'M', '1') },
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
154 { CODEC_ID_MJPEG, MKTAG('M', 'J', 'P', 'G') },
15
4d872c573360 huffyuv 4cc & -strict
michaelni
parents: 7
diff changeset
155 { CODEC_ID_HUFFYUV, MKTAG('H', 'F', 'Y', 'U') },
4d872c573360 huffyuv 4cc & -strict
michaelni
parents: 7
diff changeset
156 { CODEC_ID_HUFFYUV, MKTAG('h', 'f', 'y', 'u') },
61
2aa6e12c82fc hook this up to the CYUV decoder
tmmm
parents: 36
diff changeset
157 { CODEC_ID_CYUV, MKTAG('C', 'Y', 'U', 'V') },
2aa6e12c82fc hook this up to the CYUV decoder
tmmm
parents: 36
diff changeset
158 { CODEC_ID_CYUV, MKTAG('c', 'y', 'u', 'v') },
89
8e3cf4e9fc5a rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michaelni
parents: 85
diff changeset
159 { CODEC_ID_RAWVIDEO, MKTAG('Y', '4', '2', '2') },
94
79b7d70d6c37 I420 patch by (Sebastien Bechet <s dot bechet at av7 dot net>)
michaelni
parents: 90
diff changeset
160 { CODEC_ID_RAWVIDEO, MKTAG('I', '4', '2', '0') },
105
d7ab50ab9376 native Indeo3 decoder implementation
tmmm
parents: 104
diff changeset
161 { CODEC_ID_INDEO3, MKTAG('i', 'v', '3', '1') },
d7ab50ab9376 native Indeo3 decoder implementation
tmmm
parents: 104
diff changeset
162 { CODEC_ID_INDEO3, MKTAG('i', 'v', '3', '2') },
d7ab50ab9376 native Indeo3 decoder implementation
tmmm
parents: 104
diff changeset
163 { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '1') },
d7ab50ab9376 native Indeo3 decoder implementation
tmmm
parents: 104
diff changeset
164 { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '2') },
124
a1ad0f8b75bf first pass at a new VP3 video decoder
tmmm
parents: 123
diff changeset
165 { CODEC_ID_VP3, MKTAG('V', 'P', '3', '1') },
142
720bab5adc70 asv1 regression test
michaelni
parents: 128
diff changeset
166 { CODEC_ID_ASV1, MKTAG('A', 'S', 'V', '1') },
150
michaelni
parents: 142
diff changeset
167 { CODEC_ID_FFV1, MKTAG('F', 'F', 'V', '1') },
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
168 { 0, 0 },
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
169 };
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
170
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
171 unsigned int codec_get_tag(const CodecTag *tags, int id)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
172 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
173 while (tags->id != 0) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
174 if (tags->id == id)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
175 return tags->tag;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
176 tags++;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
177 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
178 return 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
179 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
180
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
181 static unsigned int codec_get_asf_tag(const CodecTag *tags, int id)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
182 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
183 while (tags->id != 0) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
184 if (!tags->invalid_asf && tags->id == id)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
185 return tags->tag;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
186 tags++;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
187 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
188 return 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
189 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
190
120
c720ddf380df * more strict types
kabi
parents: 119
diff changeset
191 enum CodecID codec_get_id(const CodecTag *tags, unsigned int tag)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
192 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
193 while (tags->id != 0) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
194 if (tags->tag == tag)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
195 return tags->id;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
196 tags++;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
197 }
120
c720ddf380df * more strict types
kabi
parents: 119
diff changeset
198 return CODEC_ID_NONE;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
199 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
200
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
201 unsigned int codec_get_bmp_tag(int id)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
202 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
203 return codec_get_tag(codec_bmp_tags, id);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
204 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
205
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
206 /* BITMAPINFOHEADER header */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
207 void put_bmp_header(ByteIOContext *pb, AVCodecContext *enc, const CodecTag *tags, int for_asf)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
208 {
76
d03c70b7b50d huffyuv encoding fixed
michaelni
parents: 75
diff changeset
209 put_le32(pb, 40 + enc->extradata_size); /* size */
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
210 put_le32(pb, enc->width);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
211 put_le32(pb, enc->height);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
212 put_le16(pb, 1); /* planes */
76
d03c70b7b50d huffyuv encoding fixed
michaelni
parents: 75
diff changeset
213
d03c70b7b50d huffyuv encoding fixed
michaelni
parents: 75
diff changeset
214 put_le16(pb, enc->bits_per_sample ? enc->bits_per_sample : 24); /* depth */
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
215 /* compression type */
128
45633cd5518a * introducing new public interface in imgconvert.c
romansh
parents: 124
diff changeset
216 put_le32(pb, for_asf ? codec_get_asf_tag(tags, enc->codec_id) : enc->codec_tag);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
217 put_le32(pb, enc->width * enc->height * 3);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
218 put_le32(pb, 0);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
219 put_le32(pb, 0);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
220 put_le32(pb, 0);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
221 put_le32(pb, 0);
76
d03c70b7b50d huffyuv encoding fixed
michaelni
parents: 75
diff changeset
222
d03c70b7b50d huffyuv encoding fixed
michaelni
parents: 75
diff changeset
223 put_buffer(pb, enc->extradata, enc->extradata_size);
d03c70b7b50d huffyuv encoding fixed
michaelni
parents: 75
diff changeset
224
d03c70b7b50d huffyuv encoding fixed
michaelni
parents: 75
diff changeset
225 if (enc->extradata_size & 1)
d03c70b7b50d huffyuv encoding fixed
michaelni
parents: 75
diff changeset
226 put_byte(pb, 0);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
227 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
228
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
229 static void parse_specific_params(AVCodecContext *stream, int *au_byterate, int *au_ssize, int *au_scale)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
230 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
231 switch(stream->codec_id) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
232 case CODEC_ID_PCM_S16LE:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
233 *au_scale = *au_ssize = 2*stream->channels;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
234 *au_byterate = *au_ssize * stream->sample_rate;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
235 break;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
236 case CODEC_ID_PCM_U8:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
237 case CODEC_ID_PCM_ALAW:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
238 case CODEC_ID_PCM_MULAW:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
239 *au_scale = *au_ssize = stream->channels;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
240 *au_byterate = *au_ssize * stream->sample_rate;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
241 break;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
242 case CODEC_ID_MP2:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
243 *au_ssize = 1;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
244 *au_scale = 1;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
245 *au_byterate = stream->bit_rate / 8;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
246 case CODEC_ID_MP3LAME:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
247 *au_ssize = 1;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
248 *au_scale = 1;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
249 *au_byterate = stream->bit_rate / 8;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
250 default:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
251 *au_ssize = 1;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
252 *au_scale = 1;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
253 *au_byterate = stream->bit_rate / 8;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
254 break;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
255 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
256 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
257
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
258 static offset_t avi_start_new_riff(AVIContext *avi, ByteIOContext *pb,
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
259 const char* riff_tag, const char* list_tag)
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
260 {
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
261 offset_t loff;
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
262 int i;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
263
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
264 avi->riff_id++;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
265 for (i=0; i<MAX_STREAMS; i++)
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
266 avi->indexes[i].entry = 0;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
267
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
268 avi->riff_start = start_tag(pb, "RIFF");
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
269 put_tag(pb, riff_tag);
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
270 loff = start_tag(pb, "LIST");
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
271 put_tag(pb, list_tag);
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
272 return loff;
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
273 }
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
274
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
275 static unsigned char* avi_stream2fourcc(unsigned char* tag, int index,
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
276 enum CodecType type)
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
277 {
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
278 tag[0] = '0';
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
279 tag[1] = '0' + index;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
280 if (type == CODEC_TYPE_VIDEO) {
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
281 tag[2] = 'd';
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
282 tag[3] = 'c';
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
283 } else {
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
284 tag[2] = 'w';
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
285 tag[3] = 'b';
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
286 }
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
287 tag[4] = '\0';
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
288 return tag;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
289 }
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
290
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
291 static int avi_write_header(AVFormatContext *s)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
292 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
293 AVIContext *avi = s->priv_data;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
294 ByteIOContext *pb = &s->pb;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
295 int bitrate, n, i, nb_frames, au_byterate, au_ssize, au_scale;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
296 AVCodecContext *stream, *video_enc;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
297 offset_t list1, list2, strh, strf;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
298
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
299 /* header list */
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
300 avi->riff_id = 0;
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
301 list1 = avi_start_new_riff(avi, pb, "AVI ", "hdrl");
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
302
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
303 /* avi header */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
304 put_tag(pb, "avih");
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
305 put_le32(pb, 14 * 4);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
306 bitrate = 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
307
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
308 video_enc = NULL;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
309 for(n=0;n<s->nb_streams;n++) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
310 stream = &s->streams[n]->codec;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
311 bitrate += stream->bit_rate;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
312 if (stream->codec_type == CODEC_TYPE_VIDEO)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
313 video_enc = stream;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
314 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
315
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
316 nb_frames = 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
317
36
1188ad85857a audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents: 15
diff changeset
318 if(video_enc){
85
25062c9b1f86 per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents: 77
diff changeset
319 put_le32(pb, (uint32_t)(int64_t_C(1000000) * video_enc->frame_rate_base / video_enc->frame_rate));
36
1188ad85857a audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents: 15
diff changeset
320 } else {
1188ad85857a audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents: 15
diff changeset
321 put_le32(pb, 0);
1188ad85857a audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents: 15
diff changeset
322 }
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
323 put_le32(pb, bitrate / 8); /* XXX: not quite exact */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
324 put_le32(pb, 0); /* padding */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
325 put_le32(pb, AVIF_TRUSTCKTYPE | AVIF_HASINDEX | AVIF_ISINTERLEAVED); /* flags */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
326 avi->frames_hdr_all = url_ftell(pb); /* remember this offset to fill later */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
327 put_le32(pb, nb_frames); /* nb frames, filled later */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
328 put_le32(pb, 0); /* initial frame */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
329 put_le32(pb, s->nb_streams); /* nb streams */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
330 put_le32(pb, 1024 * 1024); /* suggested buffer size */
36
1188ad85857a audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents: 15
diff changeset
331 if(video_enc){
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
332 put_le32(pb, video_enc->width);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
333 put_le32(pb, video_enc->height);
36
1188ad85857a audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents: 15
diff changeset
334 } else {
1188ad85857a audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents: 15
diff changeset
335 put_le32(pb, 0);
1188ad85857a audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents: 15
diff changeset
336 put_le32(pb, 0);
1188ad85857a audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents: 15
diff changeset
337 }
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
338 put_le32(pb, 0); /* reserved */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
339 put_le32(pb, 0); /* reserved */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
340 put_le32(pb, 0); /* reserved */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
341 put_le32(pb, 0); /* reserved */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
342
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
343 /* stream list */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
344 for(i=0;i<n;i++) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
345 list2 = start_tag(pb, "LIST");
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
346 put_tag(pb, "strl");
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
347
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
348 stream = &s->streams[i]->codec;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
349
89
8e3cf4e9fc5a rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michaelni
parents: 85
diff changeset
350 /* FourCC should really be set by the codec itself */
8e3cf4e9fc5a rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michaelni
parents: 85
diff changeset
351 if (! stream->codec_tag) {
8e3cf4e9fc5a rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michaelni
parents: 85
diff changeset
352 stream->codec_tag = codec_get_bmp_tag(stream->codec_id);
8e3cf4e9fc5a rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michaelni
parents: 85
diff changeset
353 }
8e3cf4e9fc5a rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michaelni
parents: 85
diff changeset
354
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
355 /* stream generic header */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
356 strh = start_tag(pb, "strh");
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
357 switch(stream->codec_type) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
358 case CODEC_TYPE_VIDEO:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
359 put_tag(pb, "vids");
89
8e3cf4e9fc5a rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michaelni
parents: 85
diff changeset
360 put_le32(pb, stream->codec_tag);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
361 put_le32(pb, 0); /* flags */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
362 put_le16(pb, 0); /* priority */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
363 put_le16(pb, 0); /* language */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
364 put_le32(pb, 0); /* initial frame */
75
78bec272ce3a read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents: 65
diff changeset
365
85
25062c9b1f86 per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents: 77
diff changeset
366 put_le32(pb, stream->frame_rate_base); /* scale */
25062c9b1f86 per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents: 77
diff changeset
367 put_le32(pb, stream->frame_rate); /* rate */
75
78bec272ce3a read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents: 65
diff changeset
368
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
369 put_le32(pb, 0); /* start */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
370 avi->frames_hdr_strm[i] = url_ftell(pb); /* remember this offset to fill later */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
371 put_le32(pb, nb_frames); /* length, XXX: fill later */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
372 put_le32(pb, 1024 * 1024); /* suggested buffer size */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
373 put_le32(pb, -1); /* quality */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
374 put_le32(pb, stream->width * stream->height * 3); /* sample size */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
375 put_le16(pb, 0);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
376 put_le16(pb, 0);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
377 put_le16(pb, stream->width);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
378 put_le16(pb, stream->height);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
379 break;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
380 case CODEC_TYPE_AUDIO:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
381 put_tag(pb, "auds");
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
382 put_le32(pb, 1); /* tag */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
383 put_le32(pb, 0); /* flags */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
384 put_le16(pb, 0); /* priority */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
385 put_le16(pb, 0); /* language */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
386 put_le32(pb, 0); /* initial frame */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
387 parse_specific_params(stream, &au_byterate, &au_ssize, &au_scale);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
388 put_le32(pb, au_scale); /* scale */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
389 put_le32(pb, au_byterate); /* rate */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
390 put_le32(pb, 0); /* start */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
391 avi->frames_hdr_strm[i] = url_ftell(pb); /* remember this offset to fill later */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
392 put_le32(pb, 0); /* length, XXX: filled later */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
393 put_le32(pb, 12 * 1024); /* suggested buffer size */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
394 put_le32(pb, -1); /* quality */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
395 put_le32(pb, au_ssize); /* sample size */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
396 put_le32(pb, 0);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
397 put_le32(pb, 0);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
398 break;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
399 default:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
400 av_abort();
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
401 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
402 end_tag(pb, strh);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
403
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
404 strf = start_tag(pb, "strf");
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
405 switch(stream->codec_type) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
406 case CODEC_TYPE_VIDEO:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
407 put_bmp_header(pb, stream, codec_bmp_tags, 0);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
408 break;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
409 case CODEC_TYPE_AUDIO:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
410 if (put_wav_header(pb, stream) < 0) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
411 av_free(avi);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
412 return -1;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
413 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
414 break;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
415 default:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
416 av_abort();
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
417 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
418 end_tag(pb, strf);
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
419
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
420 if (!url_is_streamed(pb)) {
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
421 unsigned char tag[5];
123
3b9e4b0a91e2 * Making AVI encoding predictable (all JUNK chunks are filled with 0)
romansh
parents: 122
diff changeset
422 int j;
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
423
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
424 /* Starting to lay out AVI OpenDML master index.
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
425 * We want to make it JUNK entry for now, since we'd
123
3b9e4b0a91e2 * Making AVI encoding predictable (all JUNK chunks are filled with 0)
romansh
parents: 122
diff changeset
426 * like to get away without making AVI an OpenDML one
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
427 * for compatibility reasons.
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
428 */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
429 avi->indexes[i].entry = avi->indexes[i].ents_allocated = 0;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
430 avi->indexes[i].indx_start = start_tag(pb, "JUNK");
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
431 put_le16(pb, 4); /* wLongsPerEntry */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
432 put_byte(pb, 0); /* bIndexSubType (0 == frame index) */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
433 put_byte(pb, 0); /* bIndexType (0 == AVI_INDEX_OF_INDEXES) */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
434 put_le32(pb, 0); /* nEntriesInUse (will fill out later on) */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
435 put_tag(pb, avi_stream2fourcc(&tag[0], i, stream->codec_type));
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
436 /* dwChunkId */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
437 put_le64(pb, 0); /* dwReserved[3]
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
438 put_le32(pb, 0); Must be 0. */
123
3b9e4b0a91e2 * Making AVI encoding predictable (all JUNK chunks are filled with 0)
romansh
parents: 122
diff changeset
439 for (j=0; j < AVI_MASTER_INDEX_SIZE * 2; j++)
3b9e4b0a91e2 * Making AVI encoding predictable (all JUNK chunks are filled with 0)
romansh
parents: 122
diff changeset
440 put_le64(pb, 0);
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
441 end_tag(pb, avi->indexes[i].indx_start);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
442 }
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
443
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
444 end_tag(pb, list2);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
445 }
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
446
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
447 if (!url_is_streamed(pb)) {
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
448 /* AVI could become an OpenDML one, if it grows beyond 2Gb range */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
449 avi->odml_list = start_tag(pb, "JUNK");
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
450 put_tag(pb, "odml");
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
451 put_tag(pb, "dmlh");
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
452 put_le32(pb, 248);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
453 for (i = 0; i < 248; i+= 4)
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
454 put_le32(pb, 0);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
455 end_tag(pb, avi->odml_list);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
456 }
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
457
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
458 end_tag(pb, list1);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
459
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
460 avi->movi_list = start_tag(pb, "LIST");
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
461 put_tag(pb, "movi");
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
462
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
463 put_flush_packet(pb);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
464
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
465 return 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
466 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
467
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
468 static int avi_write_ix(AVFormatContext *s)
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
469 {
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
470 ByteIOContext *pb = &s->pb;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
471 AVIContext *avi = s->priv_data;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
472 unsigned char tag[5];
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
473 unsigned char ix_tag[] = "ix00";
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
474 int i, j;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
475
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
476 if (avi->riff_id > AVI_MASTER_INDEX_SIZE)
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
477 return -1;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
478
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
479 for (i=0;i<s->nb_streams;i++) {
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
480 offset_t ix, pos;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
481
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
482 avi_stream2fourcc(&tag[0], i, s->streams[i]->codec.codec_type);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
483 ix_tag[3] = '0' + i;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
484
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
485 /* Writing AVI OpenDML leaf index chunk */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
486 ix = url_ftell(pb);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
487 put_tag(pb, &ix_tag[0]); /* ix?? */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
488 put_le32(pb, avi->indexes[i].entry * 8 + 24);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
489 /* chunk size */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
490 put_le16(pb, 2); /* wLongsPerEntry */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
491 put_byte(pb, 0); /* bIndexSubType (0 == frame index) */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
492 put_byte(pb, 1); /* bIndexType (1 == AVI_INDEX_OF_CHUNKS) */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
493 put_le32(pb, avi->indexes[i].entry);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
494 /* nEntriesInUse */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
495 put_tag(pb, &tag[0]); /* dwChunkId */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
496 put_le64(pb, avi->movi_list);/* qwBaseOffset */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
497 put_le32(pb, 0); /* dwReserved_3 (must be 0) */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
498
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
499 for (j=0; j<avi->indexes[i].entry; j++) {
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
500 AVIIentry* ie = avi_get_ientry(&avi->indexes[i], j);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
501 put_le32(pb, ie->pos + 8);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
502 put_le32(pb, ((uint32_t)ie->len & ~0x80000000) |
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
503 (ie->flags & 0x10 ? 0 : 0x80000000));
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
504 }
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
505 put_flush_packet(pb);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
506 pos = url_ftell(pb);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
507
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
508 /* Updating one entry in the AVI OpenDML master index */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
509 url_fseek(pb, avi->indexes[i].indx_start - 8, SEEK_SET);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
510 put_tag(pb, "indx"); /* enabling this entry */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
511 url_fskip(pb, 8);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
512 put_le32(pb, avi->riff_id); /* nEntriesInUse */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
513 url_fskip(pb, 16*avi->riff_id);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
514 put_le64(pb, ix); /* qwOffset */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
515 put_le32(pb, pos - ix); /* dwSize */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
516 put_le32(pb, avi->indexes[i].entry); /* dwDuration */
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
517
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
518 url_fseek(pb, pos, SEEK_SET);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
519 }
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
520 return 0;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
521 }
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
522
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
523 static int avi_write_idx1(AVFormatContext *s)
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
524 {
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
525 ByteIOContext *pb = &s->pb;
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
526 AVIContext *avi = s->priv_data;
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
527 offset_t file_size, idx_chunk;
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
528 int i, n, nb_frames, au_byterate, au_ssize, au_scale;
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
529 AVCodecContext *stream;
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
530 unsigned char tag[5];
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
531
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
532 if (!url_is_streamed(pb)) {
122
013a7a0f2a1f * keeping compiler happy and quiet
kabi
parents: 120
diff changeset
533 AVIIentry* ie = 0, *tie;
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
534 int entry[MAX_STREAMS];
122
013a7a0f2a1f * keeping compiler happy and quiet
kabi
parents: 120
diff changeset
535 int empty, stream_id = -1;
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
536
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
537 idx_chunk = start_tag(pb, "idx1");
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
538 memset(&entry[0], 0, sizeof(entry));
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
539 do {
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
540 empty = 1;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
541 for (i=0; i<s->nb_streams; i++) {
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
542 if (avi->indexes[i].entry <= entry[i])
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
543 continue;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
544
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
545 tie = avi_get_ientry(&avi->indexes[i], entry[i]);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
546 if (empty || tie->pos < ie->pos) {
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
547 ie = tie;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
548 stream_id = i;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
549 }
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
550 empty = 0;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
551 }
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
552 if (!empty) {
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
553 avi_stream2fourcc(&tag[0], stream_id,
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
554 s->streams[stream_id]->codec.codec_type);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
555 put_tag(pb, &tag[0]);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
556 put_le32(pb, ie->flags);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
557 put_le32(pb, ie->pos);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
558 put_le32(pb, ie->len);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
559 entry[stream_id]++;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
560 }
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
561 } while (!empty);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
562 end_tag(pb, idx_chunk);
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
563
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
564 /* Fill in frame/sample counters */
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
565 file_size = url_ftell(pb);
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
566 nb_frames = 0;
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
567 for(n=0;n<s->nb_streams;n++) {
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
568 if (avi->frames_hdr_strm[n] != 0) {
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
569 stream = &s->streams[n]->codec;
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
570 url_fseek(pb, avi->frames_hdr_strm[n], SEEK_SET);
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
571 if (stream->codec_type == CODEC_TYPE_VIDEO) {
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
572 put_le32(pb, stream->frame_number);
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
573 if (nb_frames < stream->frame_number)
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
574 nb_frames = stream->frame_number;
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
575 } else {
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
576 if (stream->codec_id == CODEC_ID_MP2 || stream->codec_id == CODEC_ID_MP3LAME) {
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
577 put_le32(pb, stream->frame_number);
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
578 nb_frames += stream->frame_number;
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
579 } else {
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
580 parse_specific_params(stream, &au_byterate, &au_ssize, &au_scale);
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
581 put_le32(pb, avi->audio_strm_length[n] / au_ssize);
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
582 }
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
583 }
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
584 }
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
585 }
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
586 if (avi->frames_hdr_all != 0) {
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
587 url_fseek(pb, avi->frames_hdr_all, SEEK_SET);
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
588 put_le32(pb, nb_frames);
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
589 }
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
590 url_fseek(pb, file_size, SEEK_SET);
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
591 }
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
592 return 0;
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
593 }
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
594
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
595 static int avi_write_packet(AVFormatContext *s, int stream_index,
65
a58a8a53eb46 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 61
diff changeset
596 uint8_t *buf, int size, int force_pts)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
597 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
598 AVIContext *avi = s->priv_data;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
599 ByteIOContext *pb = &s->pb;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
600 unsigned char tag[5];
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
601 unsigned int flags;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
602 AVCodecContext *enc;
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
603
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
604 if (url_ftell(pb) - avi->riff_start > AVI_MAX_RIFF_SIZE) {
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
605 avi_write_ix(s);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
606 end_tag(pb, avi->movi_list);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
607
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
608 if (avi->riff_id == 1)
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
609 avi_write_idx1(s);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
610
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
611 end_tag(pb, avi->riff_start);
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
612 avi->movi_list = avi_start_new_riff(avi, pb, "AVIX", "movi");
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
613 }
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
614
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
615 enc = &s->streams[stream_index]->codec;
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
616 avi_stream2fourcc(&tag[0], stream_index, enc->codec_type);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
617 if (enc->codec_type == CODEC_TYPE_AUDIO) {
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
618 avi->audio_strm_length[stream_index] += size;
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
619 flags = 0x10;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
620 } else
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
621 flags = enc->coded_frame->key_frame ? 0x10 : 0x00;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
622
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
623 if (!url_is_streamed(&s->pb)) {
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
624 AVIIndex* idx = &avi->indexes[stream_index];
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
625 int cl = idx->entry / AVI_INDEX_CLUSTER_SIZE;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
626 int id = idx->entry % AVI_INDEX_CLUSTER_SIZE;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
627 if (idx->ents_allocated <= idx->entry) {
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
628 idx->cluster = av_realloc(idx->cluster, (cl+1)*sizeof(void*));
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
629 if (!idx->cluster)
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
630 return -1;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
631 idx->cluster[cl] = av_malloc(AVI_INDEX_CLUSTER_SIZE*sizeof(AVIIentry));
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
632 if (!idx->cluster[cl])
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
633 return -1;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
634 idx->ents_allocated += AVI_INDEX_CLUSTER_SIZE;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
635 }
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
636
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
637 idx->cluster[cl][id].flags = flags;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
638 idx->cluster[cl][id].pos = url_ftell(pb) - avi->movi_list;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
639 idx->cluster[cl][id].len = size;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
640 idx->entry++;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
641 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
642
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
643 put_buffer(pb, tag, 4);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
644 put_le32(pb, size);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
645 put_buffer(pb, buf, size);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
646 if (size & 1)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
647 put_byte(pb, 0);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
648
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
649 put_flush_packet(pb);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
650 return 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
651 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
652
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
653 static int avi_write_trailer(AVFormatContext *s)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
654 {
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
655 AVIContext *avi = s->priv_data;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
656 ByteIOContext *pb = &s->pb;
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
657 int res = 0;
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
658 int i, j, n, nb_frames;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
659 offset_t file_size;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
660
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
661 if (avi->riff_id == 1) {
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
662 end_tag(pb, avi->movi_list);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
663 res = avi_write_idx1(s);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
664 end_tag(pb, avi->riff_start);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
665 } else {
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
666 avi_write_ix(s);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
667 end_tag(pb, avi->movi_list);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
668 end_tag(pb, avi->riff_start);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
669
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
670 file_size = url_ftell(pb);
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
671 url_fseek(pb, avi->odml_list - 8, SEEK_SET);
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
672 put_tag(pb, "LIST"); /* Making this AVI OpenDML one */
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
673 url_fskip(pb, 16);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
674
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
675 for (n=nb_frames=0;n<s->nb_streams;n++) {
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
676 AVCodecContext *stream = &s->streams[n]->codec;
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
677 if (stream->codec_type == CODEC_TYPE_VIDEO) {
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
678 if (nb_frames < stream->frame_number)
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
679 nb_frames = stream->frame_number;
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
680 } else {
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
681 if (stream->codec_id == CODEC_ID_MP2 || stream->codec_id == CODEC_ID_MP3LAME) {
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
682 nb_frames += stream->frame_number;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
683 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
684 }
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
685 }
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
686 put_le32(pb, nb_frames);
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
687 url_fseek(pb, file_size, SEEK_SET);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
688 }
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
689 put_flush_packet(pb);
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
690
119
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
691 for (i=0; i<MAX_STREAMS; i++) {
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
692 for (j=0; j<avi->indexes[i].ents_allocated/AVI_INDEX_CLUSTER_SIZE; j++)
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
693 av_free(avi->indexes[i].cluster[j]);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
694 av_free(avi->indexes[i].cluster);
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
695 avi->indexes[i].cluster = NULL;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
696 avi->indexes[i].ents_allocated = avi->indexes[i].entry = 0;
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
697 }
602546f3cbea Complete support for OpenDML AVIs and AVIs > 2Gb.
romansh
parents: 106
diff changeset
698
102
c48108fe538e AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents: 94
diff changeset
699 return res;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
700 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
701
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
702 static AVOutputFormat avi_oformat = {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
703 "avi",
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
704 "avi format",
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
705 "video/x-msvideo",
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
706 "avi",
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
707 sizeof(AVIContext),
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
708 CODEC_ID_MP2,
106
4da5d55b3690 we really shouldnt use M$* as default codec -> use MPEG4 as default
michaelni
parents: 105
diff changeset
709 CODEC_ID_MPEG4,
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
710 avi_write_header,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
711 avi_write_packet,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
712 avi_write_trailer,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
713 };
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
714
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
715 int avienc_init(void)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
716 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
717 av_register_output_format(&avi_oformat);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
718 return 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
719 }