Mercurial > libavformat.hg
annotate ffmenc.c @ 3432:32bb3a8d8762 libavformat
Remove Fabrice's copyright from the Makefiles. They have been entirely
rewritten since they were originally created.
| author | diego |
|---|---|
| date | Fri, 06 Jun 2008 17:50:32 +0000 |
| parents | 7a0230981402 |
| children | 9e994fbfe7c3 |
| rev | line source |
|---|---|
| 0 | 1 /* |
| 3348 | 2 * FFM (ffserver live feed) muxer |
| 0 | 3 * Copyright (c) 2001 Fabrice Bellard. |
| 4 * | |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
5 * This file is part of FFmpeg. |
|
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
6 * |
|
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
| 0 | 8 * modify it under the terms of the GNU Lesser General Public |
| 9 * License as published by the Free Software Foundation; either | |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
| 0 | 11 * |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
| 0 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 15 * Lesser General Public License for more details. | |
| 16 * | |
| 17 * You should have received a copy of the GNU Lesser General Public | |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
|
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
887
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 0 | 20 */ |
| 3348 | 21 |
| 0 | 22 #include "avformat.h" |
| 3348 | 23 #include "ffm.h" |
| 0 | 24 |
| 25 /* disable pts hack for testing */ | |
| 26 int ffm_nopts = 0; | |
| 27 | |
| 28 static void flush_packet(AVFormatContext *s) | |
| 29 { | |
| 30 FFMContext *ffm = s->priv_data; | |
| 31 int fill_size, h; | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2222
diff
changeset
|
32 ByteIOContext *pb = s->pb; |
| 0 | 33 |
| 34 fill_size = ffm->packet_end - ffm->packet_ptr; | |
| 35 memset(ffm->packet_ptr, 0, fill_size); | |
| 36 | |
| 885 | 37 if (url_ftell(pb) % ffm->packet_size) |
|
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
38 av_abort(); |
|
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
39 |
| 0 | 40 /* put header */ |
| 41 put_be16(pb, PACKET_ID); | |
| 42 put_be16(pb, fill_size); | |
| 43 put_be64(pb, ffm->pts); | |
| 44 h = ffm->frame_offset; | |
| 45 if (ffm->first_packet) | |
| 46 h |= 0x8000; | |
| 47 put_be16(pb, h); | |
| 48 put_buffer(pb, ffm->packet, ffm->packet_end - ffm->packet); | |
|
751
dcb459ca11eb
Flush the ffm packet to the wire (or file) whenever we flush the ffm packet.
philipjsg
parents:
744
diff
changeset
|
49 put_flush_packet(pb); |
| 0 | 50 |
| 51 /* prepare next packet */ | |
| 52 ffm->frame_offset = 0; /* no key frame */ | |
| 53 ffm->pts = 0; /* no pts */ | |
| 54 ffm->packet_ptr = ffm->packet; | |
| 55 ffm->first_packet = 0; | |
| 56 } | |
| 57 | |
| 58 /* 'first' is true if first data of a frame */ | |
| 59 static void ffm_write_data(AVFormatContext *s, | |
| 241 | 60 const uint8_t *buf, int size, |
| 65 | 61 int64_t pts, int first) |
| 0 | 62 { |
| 63 FFMContext *ffm = s->priv_data; | |
| 64 int len; | |
| 65 | |
| 66 if (first && ffm->frame_offset == 0) | |
| 67 ffm->frame_offset = ffm->packet_ptr - ffm->packet + FFM_HEADER_SIZE; | |
| 68 if (first && ffm->pts == 0) | |
| 69 ffm->pts = pts; | |
| 70 | |
| 71 /* write as many packets as needed */ | |
| 72 while (size > 0) { | |
| 73 len = ffm->packet_end - ffm->packet_ptr; | |
| 74 if (len > size) | |
| 75 len = size; | |
| 76 memcpy(ffm->packet_ptr, buf, len); | |
| 77 | |
| 78 ffm->packet_ptr += len; | |
| 79 buf += len; | |
| 80 size -= len; | |
| 81 if (ffm->packet_ptr >= ffm->packet_end) { | |
| 82 /* special case : no pts in packet : we leave the current one */ | |
| 83 if (ffm->pts == 0) | |
| 84 ffm->pts = pts; | |
| 85 | |
| 86 flush_packet(s); | |
| 87 } | |
| 88 } | |
| 89 } | |
| 90 | |
| 91 static int ffm_write_header(AVFormatContext *s) | |
| 92 { | |
| 93 FFMContext *ffm = s->priv_data; | |
| 94 AVStream *st; | |
| 95 FFMStream *fst; | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2222
diff
changeset
|
96 ByteIOContext *pb = s->pb; |
| 0 | 97 AVCodecContext *codec; |
| 98 int bit_rate, i; | |
| 99 | |
| 100 ffm->packet_size = FFM_PACKET_SIZE; | |
| 101 | |
| 102 /* header */ | |
|
862
aa0abab5e320
fix feed read_header, avoid using put_tag in write_header, to be consistent with read_header, also some minor cosmetics
alex
parents:
858
diff
changeset
|
103 put_le32(pb, MKTAG('F', 'F', 'M', '1')); |
| 0 | 104 put_be32(pb, ffm->packet_size); |
| 105 /* XXX: store write position in other file ? */ | |
| 106 put_be64(pb, ffm->packet_size); /* current write position */ | |
| 107 | |
| 108 put_be32(pb, s->nb_streams); | |
| 109 bit_rate = 0; | |
| 110 for(i=0;i<s->nb_streams;i++) { | |
| 111 st = s->streams[i]; | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
112 bit_rate += st->codec->bit_rate; |
| 0 | 113 } |
| 114 put_be32(pb, bit_rate); | |
| 115 | |
| 116 /* list of streams */ | |
| 117 for(i=0;i<s->nb_streams;i++) { | |
| 118 st = s->streams[i]; | |
| 119 fst = av_mallocz(sizeof(FFMStream)); | |
| 120 if (!fst) | |
| 121 goto fail; | |
|
502
813b0119a98e
ffserver fixes by (Koos Vriezen <koos.vriezen at xs4all dot nl>)
michael
parents:
468
diff
changeset
|
122 av_set_pts_info(st, 64, 1, 1000000); |
| 0 | 123 st->priv_data = fst; |
| 124 | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
125 codec = st->codec; |
| 0 | 126 /* generic info */ |
| 127 put_be32(pb, codec->codec_id); | |
| 128 put_byte(pb, codec->codec_type); | |
| 129 put_be32(pb, codec->bit_rate); | |
| 887 | 130 put_be32(pb, st->quality); |
| 0 | 131 put_be32(pb, codec->flags); |
|
744
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
132 put_be32(pb, codec->flags2); |
|
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
133 put_be32(pb, codec->debug); |
| 0 | 134 /* specific info */ |
| 135 switch(codec->codec_type) { | |
| 136 case CODEC_TYPE_VIDEO: | |
| 743 | 137 put_be32(pb, codec->time_base.num); |
| 138 put_be32(pb, codec->time_base.den); | |
| 0 | 139 put_be16(pb, codec->width); |
| 140 put_be16(pb, codec->height); | |
| 141 put_be16(pb, codec->gop_size); | |
|
744
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
142 put_be32(pb, codec->pix_fmt); |
| 0 | 143 put_byte(pb, codec->qmin); |
| 144 put_byte(pb, codec->qmax); | |
| 145 put_byte(pb, codec->max_qdiff); | |
| 146 put_be16(pb, (int) (codec->qcompress * 10000.0)); | |
| 147 put_be16(pb, (int) (codec->qblur * 10000.0)); | |
| 148 put_be32(pb, codec->bit_rate_tolerance); | |
| 149 put_strz(pb, codec->rc_eq); | |
| 150 put_be32(pb, codec->rc_max_rate); | |
| 151 put_be32(pb, codec->rc_min_rate); | |
| 152 put_be32(pb, codec->rc_buffer_size); | |
| 823 | 153 put_be64(pb, av_dbl2int(codec->i_quant_factor)); |
| 154 put_be64(pb, av_dbl2int(codec->b_quant_factor)); | |
| 155 put_be64(pb, av_dbl2int(codec->i_quant_offset)); | |
| 156 put_be64(pb, av_dbl2int(codec->b_quant_offset)); | |
| 0 | 157 put_be32(pb, codec->dct_algo); |
|
744
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
158 put_be32(pb, codec->strict_std_compliance); |
|
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
159 put_be32(pb, codec->max_b_frames); |
|
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
160 put_be32(pb, codec->luma_elim_threshold); |
|
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
161 put_be32(pb, codec->chroma_elim_threshold); |
|
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
162 put_be32(pb, codec->mpeg_quant); |
|
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
163 put_be32(pb, codec->intra_dc_precision); |
|
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
164 put_be32(pb, codec->me_method); |
|
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
165 put_be32(pb, codec->mb_decision); |
|
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
166 put_be32(pb, codec->nsse_weight); |
|
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
167 put_be32(pb, codec->frame_skip_cmp); |
| 823 | 168 put_be64(pb, av_dbl2int(codec->rc_buffer_aggressivity)); |
|
1809
491581a2b9a7
codec_tag settable via VideoTag, and transmit codec_tag in ffm
alex
parents:
1787
diff
changeset
|
169 put_be32(pb, codec->codec_tag); |
| 0 | 170 break; |
| 171 case CODEC_TYPE_AUDIO: | |
| 172 put_be32(pb, codec->sample_rate); | |
| 173 put_le16(pb, codec->channels); | |
| 174 put_le16(pb, codec->frame_size); | |
| 175 break; | |
| 176 default: | |
| 537 | 177 return -1; |
| 0 | 178 } |
| 179 /* hack to have real time */ | |
| 180 if (ffm_nopts) | |
| 181 fst->pts = 0; | |
| 182 else | |
| 183 fst->pts = av_gettime(); | |
| 184 } | |
| 185 | |
| 186 /* flush until end of block reached */ | |
| 187 while ((url_ftell(pb) % ffm->packet_size) != 0) | |
| 188 put_byte(pb, 0); | |
| 189 | |
| 190 put_flush_packet(pb); | |
| 191 | |
| 192 /* init packet mux */ | |
| 193 ffm->packet_ptr = ffm->packet; | |
| 194 ffm->packet_end = ffm->packet + ffm->packet_size - FFM_HEADER_SIZE; | |
| 537 | 195 assert(ffm->packet_end >= ffm->packet); |
| 0 | 196 ffm->frame_offset = 0; |
| 197 ffm->pts = 0; | |
| 198 ffm->first_packet = 1; | |
| 199 | |
| 200 return 0; | |
| 201 fail: | |
| 202 for(i=0;i<s->nb_streams;i++) { | |
| 203 st = s->streams[i]; | |
| 204 av_freep(&st->priv_data); | |
| 205 } | |
| 206 return -1; | |
| 207 } | |
| 208 | |
| 468 | 209 static int ffm_write_packet(AVFormatContext *s, AVPacket *pkt) |
| 0 | 210 { |
| 468 | 211 AVStream *st = s->streams[pkt->stream_index]; |
| 0 | 212 FFMStream *fst = st->priv_data; |
| 65 | 213 int64_t pts; |
| 214 uint8_t header[FRAME_HEADER_SIZE]; | |
| 0 | 215 |
| 216 pts = fst->pts; | |
| 217 /* packet size & key_frame */ | |
| 468 | 218 header[0] = pkt->stream_index; |
| 0 | 219 header[1] = 0; |
| 468 | 220 if (pkt->flags & PKT_FLAG_KEY) |
| 0 | 221 header[1] |= FLAG_KEY_FRAME; |
| 3312 | 222 AV_WB24(header+2, pkt->size); |
| 3310 | 223 AV_WB24(header+5, pkt->duration); |
| 0 | 224 ffm_write_data(s, header, FRAME_HEADER_SIZE, pts, 1); |
| 3312 | 225 ffm_write_data(s, pkt->data, pkt->size, pts, 0); |
| 0 | 226 |
| 3311 | 227 fst->pts += pkt->duration; |
| 0 | 228 return 0; |
| 229 } | |
| 230 | |
| 231 static int ffm_write_trailer(AVFormatContext *s) | |
| 232 { | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2222
diff
changeset
|
233 ByteIOContext *pb = s->pb; |
| 0 | 234 FFMContext *ffm = s->priv_data; |
| 235 | |
| 236 /* flush packets */ | |
| 237 if (ffm->packet_ptr > ffm->packet) | |
| 238 flush_packet(s); | |
| 239 | |
| 240 put_flush_packet(pb); | |
| 241 | |
| 242 if (!url_is_streamed(pb)) { | |
| 65 | 243 int64_t size; |
| 0 | 244 /* update the write offset */ |
| 245 size = url_ftell(pb); | |
| 246 url_fseek(pb, 8, SEEK_SET); | |
| 247 put_be64(pb, size); | |
| 248 put_flush_packet(pb); | |
| 249 } | |
| 250 | |
| 251 return 0; | |
| 252 } | |
| 253 | |
| 1169 | 254 AVOutputFormat ffm_muxer = { |
| 0 | 255 "ffm", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3349
diff
changeset
|
256 NULL_IF_CONFIG_SMALL("ffm format"), |
| 0 | 257 "", |
| 258 "ffm", | |
| 259 sizeof(FFMContext), | |
| 260 /* not really used */ | |
| 261 CODEC_ID_MP2, | |
| 262 CODEC_ID_MPEG1VIDEO, | |
| 263 ffm_write_header, | |
| 264 ffm_write_packet, | |
| 265 ffm_write_trailer, | |
| 266 }; |
