more changes for ffmpeg options dialog
[goodguy/history.git] / cinelerra-5.1 / cinelerra / ffmpeg.C
1
2 #include <stdio.h>
3 #include <stdint.h>
4 #include <stdlib.h>
5 #include <unistd.h>
6 #include <string.h>
7 #include <stdarg.h>
8 #include <fcntl.h>
9 #include <limits.h>
10 // work arounds (centos)
11 #include <lzma.h>
12 #ifndef INT64_MAX
13 #define INT64_MAX 9223372036854775807LL
14 #endif
15 #define MAX_RETRY 1000
16
17 #include "asset.h"
18 #include "bccmodels.h"
19 #include "bchash.h"
20 #include "fileffmpeg.h"
21 #include "file.h"
22 #include "ffmpeg.h"
23 #include "indexfile.h"
24 #include "libdv.h"
25 #include "libmjpeg.h"
26 #include "mainerror.h"
27 #include "mwindow.h"
28 #include "vframe.h"
29
30
31 #define VIDEO_INBUF_SIZE 0x10000
32 #define AUDIO_INBUF_SIZE 0x10000
33 #define VIDEO_REFILL_THRESH 0
34 #define AUDIO_REFILL_THRESH 0x1000
35
36 Mutex FFMPEG::fflock("FFMPEG::fflock");
37
38 static void ff_err(int ret, const char *fmt, ...)
39 {
40         char msg[BCTEXTLEN];
41         va_list ap;
42         va_start(ap, fmt);
43         vsnprintf(msg, sizeof(msg), fmt, ap);
44         va_end(ap);
45         char errmsg[BCSTRLEN];
46         av_strerror(ret, errmsg, sizeof(errmsg));
47         fprintf(stderr,_("%s  err: %s\n"),msg, errmsg);
48 }
49
50 void FFPacket::init()
51 {
52         av_init_packet(&pkt);
53         pkt.data = 0; pkt.size = 0;
54 }
55 void FFPacket::finit()
56 {
57         av_packet_unref(&pkt);
58 }
59
60 FFrame::FFrame(FFStream *fst)
61 {
62         this->fst = fst;
63         frm = av_frame_alloc();
64         init = fst->init_frame(frm);
65 }
66
67 FFrame::~FFrame()
68 {
69         av_frame_free(&frm);
70 }
71
72 void FFrame::queue(int64_t pos)
73 {
74         position = pos;
75         fst->queue(this);
76 }
77
78 void FFrame::dequeue()
79 {
80         fst->dequeue(this);
81 }
82
83 int FFAudioStream::read(float *fp, long len)
84 {
85         long n = len * nch;
86         float *op = outp;
87         while( n > 0 ) {
88                 int k = lmt - op;
89                 if( k > n ) k = n;
90                 n -= k;
91                 while( --k >= 0 ) *fp++ = *op++;
92                 if( op >= lmt ) op = bfr;
93         }
94         return len;
95 }
96
97 void FFAudioStream::realloc(long nsz, int nch, long len)
98 {
99         long bsz = nsz * nch;
100         float *np = new float[bsz];
101         inp = np + read(np, len) * nch;
102         outp = np;
103         lmt = np + bsz;
104         this->nch = nch;
105         sz = nsz;
106         delete [] bfr;  bfr = np;
107 }
108
109 void FFAudioStream::realloc(long nsz, int nch)
110 {
111         if( nsz > sz || this->nch != nch ) {
112                 long len = this->nch != nch ? 0 : hpos;
113                 if( len > sz ) len = sz;
114                 iseek(len);
115                 realloc(nsz, nch, len);
116         }
117 }
118
119 void FFAudioStream::reserve(long nsz, int nch)
120 {
121         long len = (inp - outp) / nch;
122         nsz += len;
123         if( nsz > sz || this->nch != nch ) {
124                 if( this->nch != nch ) len = 0;
125                 realloc(nsz, nch, len);
126                 return;
127         }
128         if( (len*=nch) > 0 && bfr != outp )
129                 memmove(bfr, outp, len*sizeof(*bfr));
130         outp = bfr;
131         inp = bfr + len;
132 }
133
134 long FFAudioStream::used()
135 {
136         long len = inp>=outp ? inp-outp : inp-bfr + lmt-outp;
137         return len / nch;
138 }
139 long FFAudioStream::avail()
140 {
141         float *in1 = inp+1;
142         if( in1 >= lmt ) in1 = bfr;
143         long len = outp >= in1 ? outp-in1 : outp-bfr + lmt-in1;
144         return len / nch;
145 }
146 void FFAudioStream::reset_history()
147 {
148         inp = outp = bfr;
149         hpos = 0;
150 }
151
152 void FFAudioStream::iseek(int64_t ofs)
153 {
154         outp = inp - ofs*nch;
155         if( outp < bfr ) outp += sz*nch;
156 }
157
158 float *FFAudioStream::get_outp(int ofs)
159 {
160         float *ret = outp;
161         outp += ofs*nch;
162         return ret;
163 }
164
165 int64_t FFAudioStream::put_inp(int ofs)
166 {
167         inp += ofs*nch;
168         return (inp-outp) / nch;
169 }
170
171 int FFAudioStream::write(const float *fp, long len)
172 {
173         long n = len * nch;
174         float *ip = inp;
175         while( n > 0 ) {
176                 int k = lmt - ip;
177                 if( k > n ) k = n;
178                 n -= k;
179                 while( --k >= 0 ) *ip++ = *fp++;
180                 if( ip >= lmt ) ip = bfr;
181         }
182         inp = ip;
183         hpos += len;
184         return len;
185 }
186
187 int FFAudioStream::zero(long len)
188 {
189         long n = len * nch;
190         float *ip = inp;
191         while( n > 0 ) {
192                 int k = lmt - ip;
193                 if( k > n ) k = n;
194                 n -= k;
195                 while( --k >= 0 ) *ip++ = 0;
196                 if( ip >= lmt ) ip = bfr;
197         }
198         inp = ip;
199         hpos += len;
200         return len;
201 }
202
203 // does not advance outp
204 int FFAudioStream::read(double *dp, long len, int ch)
205 {
206         long n = len;
207         float *op = outp + ch;
208         float *lmt1 = lmt + nch-1;
209         while( n > 0 ) {
210                 int k = (lmt1 - op) / nch;
211                 if( k > n ) k = n;
212                 n -= k;
213                 while( --k >= 0 ) { *dp++ = *op;  op += nch; }
214                 if( op >= lmt ) op -= sz*nch;
215         }
216         return len;
217 }
218
219 // load linear buffer, no wrapping allowed, does not advance inp
220 int FFAudioStream::write(const double *dp, long len, int ch)
221 {
222         long n = len;
223         float *ip = inp + ch;
224         while( --n >= 0 ) { *ip = *dp++;  ip += nch; }
225         return len;
226 }
227
228
229 FFStream::FFStream(FFMPEG *ffmpeg, AVStream *st, int fidx)
230 {
231         this->ffmpeg = ffmpeg;
232         this->st = st;
233         this->fidx = fidx;
234         frm_lock = new Mutex("FFStream::frm_lock");
235         fmt_ctx = 0;
236         filter_graph = 0;
237         buffersrc_ctx = 0;
238         buffersink_ctx = 0;
239         frm_count = 0;
240         nudge = AV_NOPTS_VALUE;
241         seek_pos = curr_pos = 0;
242         seeked = 1;  eof = 0;
243         index_markers = 0;
244         reading = writing = 0;
245         flushed = 0;
246         need_packet = 1;
247         frame = fframe = 0;
248 }
249
250 FFStream::~FFStream()
251 {
252         if( reading > 0 || writing > 0 ) avcodec_close(st->codec);
253         if( fmt_ctx ) avformat_close_input(&fmt_ctx);
254         while( frms.first ) frms.remove(frms.first);
255         if( filter_graph ) avfilter_graph_free(&filter_graph);
256         if( frame ) av_frame_free(&frame);
257         if( fframe ) av_frame_free(&fframe);
258         bsfilter.remove_all_objects();
259         delete frm_lock;
260 }
261
262 void FFStream::ff_lock(const char *cp)
263 {
264         FFMPEG::fflock.lock(cp);
265 }
266
267 void FFStream::ff_unlock()
268 {
269         FFMPEG::fflock.unlock();
270 }
271
272 void FFStream::queue(FFrame *frm)
273 {
274         frm_lock->lock("FFStream::queue");
275         frms.append(frm);
276         ++frm_count;
277         frm_lock->unlock();
278         ffmpeg->mux_lock->unlock();
279 }
280
281 void FFStream::dequeue(FFrame *frm)
282 {
283         frm_lock->lock("FFStream::dequeue");
284         --frm_count;
285         frms.remove_pointer(frm);
286         frm_lock->unlock();
287 }
288
289 int FFStream::encode_activate()
290 {
291         if( writing < 0 )
292                 writing = ffmpeg->encode_activate();
293         return writing;
294 }
295
296 int FFStream::decode_activate()
297 {
298         if( reading < 0 && (reading=ffmpeg->decode_activate()) > 0 ) {
299                 ff_lock("FFStream::decode_activate");
300                 reading = 0;
301                 AVDictionary *copts = 0;
302                 av_dict_copy(&copts, ffmpeg->opts, 0);
303                 int ret = 0;
304                 // this should be avformat_copy_context(), but no copy avail
305                 ret = avformat_open_input(&fmt_ctx, ffmpeg->fmt_ctx->filename, NULL, &copts);
306                 if( ret >= 0 ) {
307                         ret = avformat_find_stream_info(fmt_ctx, 0);
308                         st = fmt_ctx->streams[fidx];
309                         load_markers();
310                 }
311                 if( ret >= 0 ) {
312                         AVCodecID codec_id = st->codec->codec_id;
313                         AVCodec *decoder = avcodec_find_decoder(codec_id);
314                         ret = avcodec_open2(st->codec, decoder, &copts);
315                         if( ret >= 0 )
316                                 reading = 1;
317                         else
318                                 eprintf("FFStream::decode_activate: open decoder failed\n");
319                 }
320                 else
321                         eprintf("FFStream::decode_activate: can't clone input file\n");
322                 av_dict_free(&copts);
323                 ff_unlock();
324         }
325         return reading;
326 }
327
328 int FFStream::read_packet()
329 {
330         av_packet_unref(ipkt);
331         int ret = av_read_frame(fmt_ctx, ipkt);
332         if( ret < 0 ) {
333                 st_eof(1);
334                 if( ret == AVERROR_EOF ) {
335                         ipkt->stream_index = st->index;
336                         return 0;
337                 }
338                 ff_err(ret, "FFStream::read_packet: av_read_frame failed\n");
339                 flushed = 1;
340                 return -1;
341         }
342         return 1;
343 }
344
345 int FFStream::decode(AVFrame *frame)
346 {
347         int ret = 0;
348         int retries = MAX_RETRY;
349         int got_frame = 0;
350
351         while( ret >= 0 && !flushed && --retries >= 0 && !got_frame ) {
352                 if( need_packet ) {
353                         need_packet = 0;
354                         if( (ret=read_packet()) < 0 ) break;
355                 }
356                 if( ipkt->stream_index == st->index ) {
357                         while( (ipkt->size > 0 || !ipkt->data) && !got_frame ) {
358                                 ret = decode_frame(ipkt, frame, got_frame);
359                                 if( ret < 0 ) need_packet = 1;
360                                 if( ret <= 0 || !ipkt->data ) break;
361                                 ipkt->data += ret;
362                                 ipkt->size -= ret;
363                         }
364                         retries = MAX_RETRY;
365                 }
366                 if( !got_frame ) {
367                         need_packet = 1;
368                         flushed = st_eof();
369                 }
370         }
371
372         if( retries < 0 )
373                 fprintf(stderr, "FFStream::decode: Retry limit\n");
374         if( ret >= 0 )
375                 ret = got_frame;
376         else
377                 fprintf(stderr, "FFStream::decode: failed\n");
378
379         return ret;
380 }
381
382 int FFStream::load_filter(AVFrame *frame)
383 {
384         int ret = av_buffersrc_add_frame_flags(buffersrc_ctx,
385                         frame, AV_BUFFERSRC_FLAG_KEEP_REF);
386         if( ret < 0 ) {
387                 av_frame_unref(frame);
388                 eprintf("FFStream::load_filter: av_buffersrc_add_frame_flags failed\n");
389         }
390         return ret;
391 }
392
393 int FFStream::read_filter(AVFrame *frame)
394 {
395         int ret = av_buffersink_get_frame(buffersink_ctx, frame);
396         if( ret < 0 ) {
397                 if( ret == AVERROR(EAGAIN) ) return 0;
398                 if( ret == AVERROR_EOF ) { st_eof(1); return -1; }
399                 ff_err(ret, "FFStream::read_filter: av_buffersink_get_frame failed\n");
400                 return ret;
401         }
402         return 1;
403 }
404
405 int FFStream::read_frame(AVFrame *frame)
406 {
407         if( !filter_graph || !buffersrc_ctx || !buffersink_ctx )
408                 return decode(frame);
409         if( !fframe && !(fframe=av_frame_alloc()) ) {
410                 fprintf(stderr, "FFStream::read_frame: av_frame_alloc failed\n");
411                 return -1;
412         }
413         int ret = -1;
414         while( !flushed && !(ret=read_filter(frame)) ) {
415                 if( (ret=decode(fframe)) < 0 ) break;
416                 if( ret > 0 && (ret=load_filter(fframe)) < 0 ) break;
417         }
418         return ret;
419 }
420
421 int FFStream::write_packet(FFPacket &pkt)
422 {
423         bs_filter(pkt);
424         av_packet_rescale_ts(pkt, st->codec->time_base, st->time_base);
425         pkt->stream_index = st->index;
426         return av_interleaved_write_frame(ffmpeg->fmt_ctx, pkt);
427 }
428
429 int FFStream::flush()
430 {
431         int ret = 0;
432         while( ret >= 0 ) {
433                 FFPacket pkt;
434                 int got_packet = 0;
435                 ret = encode_frame(pkt, 0, got_packet);
436                 if( ret < 0 || !got_packet ) break;
437                 ret = write_packet(pkt);
438         }
439         if( ret < 0 )
440                 ff_err(ret, "FFStream::flush");
441         return ret >= 0 ? 0 : 1;
442 }
443
444 int FFStream::seek(int64_t no, double rate)
445 {
446         int64_t tstmp = -INT64_MAX+1;
447 // default ffmpeg native seek
448         int npkts = 1;
449         int64_t pos = no, plmt = -1;
450         if( index_markers && index_markers->size() > 1 ) {
451                 IndexMarks &marks = *index_markers;
452                 int i = marks.find(pos);
453                 int64_t n = i < 0 ? (i=0) : marks[i].no;
454 // if indexed seek point not too far away (<30 secs), use index
455                 if( no-n < 30*rate ) {
456                         if( n < 0 ) n = 0;
457                         pos = n;
458                         if( i < marks.size() ) plmt = marks[i].pos;
459                         npkts = MAX_RETRY;
460                 }
461         }
462         if( pos > 0 ) {
463                 double secs = pos / rate;
464                 tstmp = secs * st->time_base.den / st->time_base.num;
465                 if( nudge != AV_NOPTS_VALUE ) tstmp += nudge;
466         }
467         int ret = avformat_seek_file(fmt_ctx, st->index,
468                 -INT64_MAX, tstmp, INT64_MAX, AVSEEK_FLAG_ANY);
469         if( ret >= 0 ) {
470                 avcodec_flush_buffers(st->codec);
471                 ipkt.finit();  ipkt.init();
472                 need_packet = 0;  flushed = 0;
473                 seeked = 1;  st_eof(0);
474 // read up to retry packets, limited to npkts in stream, and not past pkt.pos plmt
475                 for(;;) {
476                         if( read_packet() <= 0 ) { ret = -1;  break; }
477                         if( plmt >= 0 && ipkt->pos >= plmt ) break;
478                         if( ipkt->stream_index != st->index ) continue;
479                         if( --npkts <= 0 ) break;
480                         int64_t pkt_ts = ipkt->dts != AV_NOPTS_VALUE ? ipkt->dts : ipkt->pts;
481                         if( pkt_ts == AV_NOPTS_VALUE ) continue;
482                         if( pkt_ts >= tstmp ) break;
483                 }
484         }
485         if( ret < 0 ) {
486 //printf("** seek fail %ld, %ld\n", pos, tstmp);
487                 seeked = need_packet = 0;
488                 st_eof(flushed=1);
489                 return -1;
490         }
491 //printf("seeked pos = %ld, %ld\n", pos, tstmp);
492         seek_pos = curr_pos = pos;
493         return 0;
494 }
495
496 FFAudioStream::FFAudioStream(FFMPEG *ffmpeg, AVStream *strm, int idx, int fidx)
497  : FFStream(ffmpeg, strm, fidx)
498 {
499         this->idx = idx;
500         channel0 = channels = 0;
501         sample_rate = 0;
502         mbsz = 0;
503         length = 0;
504         resample_context = 0;
505
506         aud_bfr_sz = 0;
507         aud_bfr = 0;
508
509 // history buffer
510         nch = 2;
511         sz = 0x10000;
512         long bsz = sz * nch;
513         bfr = new float[bsz];
514         lmt = bfr + bsz;
515         reset_history();
516 }
517
518 FFAudioStream::~FFAudioStream()
519 {
520         if( resample_context ) swr_free(&resample_context);
521         delete [] aud_bfr;
522         delete [] bfr;
523 }
524
525 int FFAudioStream::get_samples(float *&samples, uint8_t **data, int len)
526 {
527         samples = *(float **)data;
528         if( resample_context ) {
529                 if( len > aud_bfr_sz ) {        
530                         delete [] aud_bfr;
531                         aud_bfr = 0;
532                 }
533                 if( !aud_bfr ) {
534                         aud_bfr_sz = len;
535                         aud_bfr = new float[aud_bfr_sz*channels];
536                 }
537                 int ret = swr_convert(resample_context,
538                         (uint8_t**)&aud_bfr, aud_bfr_sz, (const uint8_t**)data, len);
539                 if( ret < 0 ) {
540                         ff_err(ret, "FFAudioStream::get_samples: swr_convert failed\n");
541                         return -1;
542                 }
543                 samples = aud_bfr;
544                 len = ret;
545         }
546         return len;
547 }
548
549 int FFAudioStream::load_history(uint8_t **data, int len)
550 {
551         float *samples;
552         len = get_samples(samples, data, len);
553         if( len > 0 ) {
554                 // biggest user bfr since seek + frame
555                 realloc(mbsz + len + 1, channels);
556                 write(samples, len);
557         }
558         return len;
559 }
560
561 int FFAudioStream::decode_frame(AVPacket *pkt, AVFrame *frame, int &got_frame)
562 {
563         int first_frame = seeked;  seeked = 0;
564         int ret = avcodec_decode_audio4(st->codec, frame, &got_frame, pkt);
565         if( ret < 0 ) {
566                 if( first_frame ) return 0;
567                 ff_err(ret, "FFAudioStream::decode_frame: Could not read audio frame\n");
568                 return -1;
569         }
570         if( got_frame ) {
571                 int64_t pkt_ts = av_frame_get_best_effort_timestamp(frame);
572                 if( pkt_ts != AV_NOPTS_VALUE )
573                         curr_pos = ffmpeg->to_secs(pkt_ts - nudge, st->time_base) * sample_rate + 0.5;
574         }
575         return ret;
576 }
577
578 int FFAudioStream::encode_activate()
579 {
580         if( writing >= 0 ) return writing;
581         AVCodecContext *ctx = st->codec;
582         frame_sz = ctx->codec->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE ?
583                 10000 : ctx->frame_size;
584         return FFStream::encode_activate();
585 }
586
587 int FFAudioStream::nb_samples()
588 {
589         AVCodecContext *ctx = st->codec;
590         return ctx->codec->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE ?
591                 10000 : ctx->frame_size;
592 }
593
594 int64_t FFAudioStream::load_buffer(double ** const sp, int len)
595 {
596         reserve(len+1, st->codec->channels);
597         for( int ch=0; ch<nch; ++ch )
598                 write(sp[ch], len, ch);
599         return put_inp(len);
600 }
601
602 int FFAudioStream::in_history(int64_t pos)
603 {
604         if( pos > curr_pos ) return 0;
605         int64_t len = hpos;
606         if( len > sz ) len = sz;
607         if( pos < curr_pos - len ) return 0;
608         return 1;
609 }
610
611
612 int FFAudioStream::init_frame(AVFrame *frame)
613 {
614         AVCodecContext *ctx = st->codec;
615         frame->nb_samples = frame_sz;
616         frame->format = ctx->sample_fmt;
617         frame->channel_layout = ctx->channel_layout;
618         frame->sample_rate = ctx->sample_rate;
619         int ret = av_frame_get_buffer(frame, 0);
620         if (ret < 0)
621                 ff_err(ret, "FFAudioStream::init_frame: av_frame_get_buffer failed\n");
622         return ret;
623 }
624
625 int FFAudioStream::load(int64_t pos, int len)
626 {
627         if( audio_seek(pos) < 0 ) return -1;
628         if( !frame && !(frame=av_frame_alloc()) ) {
629                 fprintf(stderr, "FFAudioStream::load: av_frame_alloc failed\n");
630                 return -1;
631         }
632         if( mbsz < len ) mbsz = len;
633         int64_t end_pos = pos + len;
634         int ret = 0;
635         for( int i=0; ret>=0 && !flushed && curr_pos<end_pos && i<MAX_RETRY; ++i ) {
636                 ret = read_frame(frame);
637                 if( ret > 0 ) {
638                         load_history(&frame->extended_data[0], frame->nb_samples);
639                         curr_pos += frame->nb_samples;
640                 }
641         }
642         if( end_pos > curr_pos ) {
643                 zero(end_pos - curr_pos);
644                 curr_pos = end_pos;
645         }
646         len = curr_pos - pos;
647         iseek(len);
648         return len;
649 }
650
651 int FFAudioStream::audio_seek(int64_t pos)
652 {
653         if( decode_activate() < 0 ) return -1;
654         if( !st->codec || !st->codec->codec ) return -1;
655         if( in_history(pos) ) return 0;
656         if( pos == curr_pos ) return 0;
657         reset_history();  mbsz = 0;
658 // guarentee preload > 1sec samples
659         if( seek(pos-sample_rate, sample_rate) < 0 ) return -1;
660         return 1;
661 }
662
663 int FFAudioStream::encode(double **samples, int len)
664 {
665         if( encode_activate() <= 0 ) return -1;
666         ffmpeg->flow_ctl();
667         int ret = 0;
668         int64_t count = load_buffer(samples, len);
669         FFrame *frm = 0;
670
671         while( ret >= 0 && count >= frame_sz ) {
672                 frm = new FFrame(this);
673                 if( (ret=frm->initted()) < 0 ) break;
674                 AVFrame *frame = *frm;
675                 float *bfrp = get_outp(frame_sz);
676                 ret =  swr_convert(resample_context,
677                         (uint8_t **)frame->extended_data, frame_sz,
678                         (const uint8_t **)&bfrp, frame_sz);
679                 if( ret < 0 ) {
680                         ff_err(ret, "FFAudioStream::encode: swr_convert failed\n");
681                         break;
682                 }
683                 frm->queue(curr_pos);
684                 frm = 0;
685                 curr_pos += frame_sz;
686                 count -= frame_sz;
687         }
688
689         delete frm;
690         return ret >= 0 ? 0 : 1;
691 }
692
693 int FFAudioStream::encode_frame(AVPacket *pkt, AVFrame *frame, int &got_packet)
694 {
695         int ret = avcodec_encode_audio2(st->codec, pkt, frame, &got_packet);
696         if( ret < 0 ) {
697                 ff_err(ret, "FFAudioStream::encode_frame: encode audio failed\n");
698                 return -1;
699         }
700         return ret;
701 }
702
703 void FFAudioStream::load_markers()
704 {
705         IndexState *index_state = ffmpeg->file_base->asset->index_state;
706         if( index_state->marker_status == MARKERS_NOTTESTED ) return;
707         if( !index_state || idx >= index_state->audio_markers.size() ) return;
708         FFStream::load_markers(*index_state->audio_markers[idx], sample_rate);
709 }
710
711 FFVideoStream::FFVideoStream(FFMPEG *ffmpeg, AVStream *strm, int idx, int fidx)
712  : FFStream(ffmpeg, strm, fidx)
713 {
714         this->idx = idx;
715         width = height = 0;
716         frame_rate = 0;
717         aspect_ratio = 0;
718         length = 0;
719 }
720
721 FFVideoStream::~FFVideoStream()
722 {
723 }
724
725 int FFVideoStream::decode_frame(AVPacket *pkt, AVFrame *frame, int &got_frame)
726 {
727         int first_frame = seeked;  seeked = 0;
728         int ret = avcodec_decode_video2(st->codec, frame, &got_frame, pkt);
729         if( ret < 0 ) {
730                 if( first_frame ) return 0;
731                 ff_err(ret, "FFVideoStream::decode_frame: Could not read video frame\n");
732                 return -1;
733         }
734         else // this is right out of ffplay, looks questionable ???
735                 ret = pkt->size;
736
737         if( got_frame ) {
738                 int64_t pkt_ts = av_frame_get_best_effort_timestamp(frame);
739                 if( pkt_ts != AV_NOPTS_VALUE )
740                         curr_pos = ffmpeg->to_secs(pkt_ts - nudge, st->time_base) * frame_rate + 0.5;
741         }
742         return ret;
743 }
744
745 int FFVideoStream::load(VFrame *vframe, int64_t pos)
746 {
747         int ret = video_seek(pos);
748         if( ret < 0 ) return -1;
749         if( !frame && !(frame=av_frame_alloc()) ) {
750                 fprintf(stderr, "FFVideoStream::load: av_frame_alloc failed\n");
751                 return -1;
752         }
753         for( int i=0; ret>=0 && !flushed && curr_pos<=pos && i<MAX_RETRY; ++i ) {
754                 ret = read_frame(frame);
755                 if( ret > 0 ) ++curr_pos;
756         }
757         if( ret >= 0 ) {
758                 AVCodecContext *ctx = st->codec;
759                 ret = convert_cmodel(vframe, frame,
760                         ctx->pix_fmt, ctx->width, ctx->height);
761         }
762         ret = ret > 0 ? 1 : ret < 0 ? -1 : 0;
763         return ret;
764 }
765
766 int FFVideoStream::video_seek(int64_t pos)
767 {
768         if( decode_activate() < 0 ) return -1;
769         if( !st->codec || !st->codec->codec ) return -1;
770         if( pos == curr_pos-1 && !seeked ) return 0;
771 // if close enough, just read up to current
772         int gop = st->codec->gop_size;
773         if( gop < 4 ) gop = 4;
774         if( gop > 64 ) gop = 64;
775         int read_limit = curr_pos + 3*gop;
776         if( pos >= curr_pos && pos <= read_limit ) return 0;
777 // guarentee preload more than 2*gop frames
778         if( seek(pos - 3*gop, frame_rate) < 0 ) return -1;
779         return 1;
780 }
781
782 int FFVideoStream::init_frame(AVFrame *picture)
783 {
784         AVCodecContext *ctx = st->codec;
785         picture->format = ctx->pix_fmt;
786         picture->width  = ctx->width;
787         picture->height = ctx->height;
788         int ret = av_frame_get_buffer(picture, 32);
789         return ret;
790 }
791
792 int FFVideoStream::encode(VFrame *vframe)
793 {
794         if( encode_activate() <= 0 ) return -1;
795         ffmpeg->flow_ctl();
796         FFrame *picture = new FFrame(this);
797         int ret = picture->initted();
798         if( ret >= 0 ) {
799                 AVFrame *frame = *picture;
800                 frame->pts = curr_pos;
801                 AVCodecContext *ctx = st->codec;
802                 ret = convert_pixfmt(vframe, frame,
803                         ctx->pix_fmt, ctx->width, ctx->height);
804         }
805         if( ret >= 0 ) {
806                 picture->queue(curr_pos);
807                 ++curr_pos;
808         }
809         else {
810                 fprintf(stderr, "FFVideoStream::encode: encode failed\n");
811                 delete picture;
812         }
813         return ret >= 0 ? 0 : 1;
814 }
815
816 int FFVideoStream::encode_frame(AVPacket *pkt, AVFrame *frame, int &got_packet)
817 {
818         int ret = avcodec_encode_video2(st->codec, pkt, frame, &got_packet);
819         if( ret < 0 ) {
820                 ff_err(ret, "FFVideoStream::encode_frame: encode video failed\n");
821                 return -1;
822         }
823         return ret;
824 }
825
826 AVPixelFormat FFVideoConvert::color_model_to_pix_fmt(int color_model)
827 {
828         switch( color_model ) { 
829         case BC_YUV422:         return AV_PIX_FMT_YUYV422;
830         case BC_RGB888:         return AV_PIX_FMT_RGB24;
831         case BC_RGBA8888:       return AV_PIX_FMT_RGBA;
832         case BC_BGR8888:        return AV_PIX_FMT_BGR0;
833         case BC_BGR888:         return AV_PIX_FMT_BGR24;
834         case BC_YUV420P:        return AV_PIX_FMT_YUV420P;
835         case BC_YUV422P:        return AV_PIX_FMT_YUV422P;
836         case BC_YUV444P:        return AV_PIX_FMT_YUV444P;
837         case BC_YUV411P:        return AV_PIX_FMT_YUV411P;
838         case BC_RGB565:         return AV_PIX_FMT_RGB565;
839         case BC_RGB161616:      return AV_PIX_FMT_RGB48LE;
840         case BC_RGBA16161616:   return AV_PIX_FMT_RGBA64LE;
841         default: break;
842         }
843
844         return AV_PIX_FMT_NB;
845 }
846
847 int FFVideoConvert::pix_fmt_to_color_model(AVPixelFormat pix_fmt)
848 {
849         switch (pix_fmt) { 
850         case AV_PIX_FMT_YUYV422:        return BC_YUV422;
851         case AV_PIX_FMT_RGB24:          return BC_RGB888;
852         case AV_PIX_FMT_RGBA:           return BC_RGBA8888;
853         case AV_PIX_FMT_BGR0:           return BC_BGR8888;
854         case AV_PIX_FMT_BGR24:          return BC_BGR888;
855         case AV_PIX_FMT_YUV420P:        return BC_YUV420P;
856         case AV_PIX_FMT_YUV422P:        return BC_YUV422P;
857         case AV_PIX_FMT_YUV444P:        return BC_YUV444P;
858         case AV_PIX_FMT_YUV411P:        return BC_YUV411P;
859         case AV_PIX_FMT_RGB565:         return BC_RGB565;
860         case AV_PIX_FMT_RGB48LE:        return BC_RGB161616;
861         case AV_PIX_FMT_RGBA64LE:       return BC_RGBA16161616;
862         default: break;
863         }
864
865         return BC_TRANSPARENCY;
866 }
867
868 int FFVideoConvert::convert_picture_vframe(VFrame *frame,
869                 AVFrame *ip, AVPixelFormat ifmt, int iw, int ih)
870 {
871         AVFrame opic;
872         int cmodel = frame->get_color_model();
873         AVPixelFormat ofmt = color_model_to_pix_fmt(cmodel);
874         if( ofmt == AV_PIX_FMT_NB ) return -1;
875         int size = av_image_fill_arrays(opic.data, opic.linesize,
876                 frame->get_data(), ofmt, frame->get_w(), frame->get_h(), 1);
877         if( size < 0 ) return -1;
878
879         // transfer line sizes must match also
880         int planar = BC_CModels::is_planar(cmodel);
881         int packed_width = !planar ? frame->get_bytes_per_line() :
882                  BC_CModels::calculate_pixelsize(cmodel) * frame->get_w();
883         if( packed_width != opic.linesize[0] )  return -1;
884
885         if( planar ) {
886                 // override av_image_fill_arrays() for planar types
887                 opic.data[0] = frame->get_y();
888                 opic.data[1] = frame->get_u();
889                 opic.data[2] = frame->get_v();
890         }
891
892         convert_ctx = sws_getCachedContext(convert_ctx, iw, ih, ifmt,
893                 frame->get_w(), frame->get_h(), ofmt, SWS_BICUBIC, NULL, NULL, NULL);
894         if( !convert_ctx ) {
895                 fprintf(stderr, "FFVideoConvert::convert_picture_frame:"
896                                 " sws_getCachedContext() failed\n");
897                 return -1;
898         }
899         int ret = sws_scale(convert_ctx, ip->data, ip->linesize, 0, ih,
900             opic.data, opic.linesize);
901         if( ret < 0 ) {
902                 ff_err(ret, "FFVideoConvert::convert_picture_frame: sws_scale() failed\n");
903                 return -1;
904         }
905         return 0;
906 }
907
908 int FFVideoConvert::convert_cmodel(VFrame *frame,
909                  AVFrame *ip, AVPixelFormat ifmt, int iw, int ih)
910 {
911         // try direct transfer
912         if( !convert_picture_vframe(frame, ip, ifmt, iw, ih) ) return 1;
913         // use indirect transfer
914         const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(ifmt);
915         int max_bits = 0;
916         for( int i = 0; i <desc->nb_components; ++i ) {
917                 int bits = desc->comp[i].depth;
918                 if( bits > max_bits ) max_bits = bits;
919         }
920 // from libavcodec/pixdesc.c
921 #define pixdesc_has_alpha(pixdesc) ((pixdesc)->nb_components == 2 || \
922  (pixdesc)->nb_components == 4 || (pixdesc)->flags & AV_PIX_FMT_FLAG_PAL)
923         int icolor_model = pixdesc_has_alpha(desc) ?
924                 (max_bits > 8 ? BC_RGBA16161616 : BC_RGBA8888) :
925                 (max_bits > 8 ? BC_RGB161616 : BC_RGB888) ;
926         VFrame vframe(iw, ih, icolor_model);
927         if( convert_picture_vframe(&vframe, ip, ifmt, iw, ih) ) return -1;
928         frame->transfer_from(&vframe);
929         return 1;
930 }
931
932 int FFVideoConvert::transfer_cmodel(VFrame *frame,
933                  AVFrame *ifp, AVPixelFormat ifmt, int iw, int ih)
934 {
935         int ret = convert_cmodel(frame, ifp, ifmt, iw, ih);
936         if( ret > 0 ) {
937                 const AVDictionary *src = av_frame_get_metadata(ifp);
938                 AVDictionaryEntry *t = NULL;
939                 BC_Hash *hp = frame->get_params();
940                 //hp->clear();
941                 while( (t=av_dict_get(src, "", t, AV_DICT_IGNORE_SUFFIX)) )
942                         hp->update(t->key, t->value);
943         }
944         return ret;
945 }
946
947 int FFVideoConvert::convert_vframe_picture(VFrame *frame,
948                 AVFrame *op, AVPixelFormat ofmt, int ow, int oh)
949 {
950         AVFrame opic;
951         int cmodel = frame->get_color_model();
952         AVPixelFormat ifmt = color_model_to_pix_fmt(cmodel);
953         if( ifmt == AV_PIX_FMT_NB ) return -1;
954         int size = av_image_fill_arrays(opic.data, opic.linesize,
955                  frame->get_data(), ifmt, frame->get_w(), frame->get_h(), 1);
956         if( size < 0 ) return -1;
957
958         // transfer line sizes must match also
959         int planar = BC_CModels::is_planar(cmodel);
960         int packed_width = !planar ? frame->get_bytes_per_line() :
961                  BC_CModels::calculate_pixelsize(cmodel) * frame->get_w();
962         if( packed_width != opic.linesize[0] )  return -1;
963
964         if( planar ) {
965                 // override av_image_fill_arrays() for planar types
966                 opic.data[0] = frame->get_y();
967                 opic.data[1] = frame->get_u();
968                 opic.data[2] = frame->get_v();
969         }
970
971         convert_ctx = sws_getCachedContext(convert_ctx, frame->get_w(), frame->get_h(), ifmt,
972                 ow, oh, ofmt, SWS_BICUBIC, NULL, NULL, NULL);
973         if( !convert_ctx ) {
974                 fprintf(stderr, "FFVideoConvert::convert_frame_picture:"
975                                 " sws_getCachedContext() failed\n");
976                 return -1;
977         }
978         int ret = sws_scale(convert_ctx, opic.data, opic.linesize, 0, frame->get_h(),
979                         op->data, op->linesize);
980         if( ret < 0 ) {
981                 ff_err(ret, "FFVideoConvert::convert_frame_picture: sws_scale() failed\n");
982                 return -1;
983         }
984         return 0;
985 }
986
987 int FFVideoConvert::convert_pixfmt(VFrame *frame,
988                  AVFrame *op, AVPixelFormat ofmt, int ow, int oh)
989 {
990         // try direct transfer
991         if( !convert_vframe_picture(frame, op, ofmt, ow, oh) ) return 1;
992         // use indirect transfer
993         int colormodel = frame->get_color_model();
994         int bits = BC_CModels::calculate_pixelsize(colormodel) * 8;
995         bits /= BC_CModels::components(colormodel);
996         int icolor_model =  BC_CModels::has_alpha(colormodel) ?
997                 (bits > 8 ? BC_RGBA16161616 : BC_RGBA8888) :
998                 (bits > 8 ? BC_RGB161616: BC_RGB888) ;
999         VFrame vframe(frame->get_w(), frame->get_h(), icolor_model);
1000         vframe.transfer_from(frame);
1001         if( !convert_vframe_picture(&vframe, op, ofmt, ow, oh) ) return 1;
1002         return -1;
1003 }
1004
1005 int FFVideoConvert::transfer_pixfmt(VFrame *frame,
1006                  AVFrame *ofp, AVPixelFormat ofmt, int ow, int oh)
1007 {
1008         int ret = convert_pixfmt(frame, ofp, ofmt, ow, oh);
1009         if( ret > 0 ) {
1010                 BC_Hash *hp = frame->get_params();
1011                 AVDictionary **dict = avpriv_frame_get_metadatap(ofp);
1012                 //av_dict_free(dict);
1013                 for( int i=0; i<hp->size(); ++i ) {
1014                         char *key = hp->get_key(i), *val = hp->get_value(i);
1015                         av_dict_set(dict, key, val, 0);
1016                 }
1017         }
1018         return ret;
1019 }
1020
1021 void FFVideoStream::load_markers()
1022 {
1023         IndexState *index_state = ffmpeg->file_base->asset->index_state;
1024         if( idx >= index_state->video_markers.size() ) return;
1025         FFStream::load_markers(*index_state->video_markers[idx], frame_rate);
1026 }
1027
1028
1029 FFMPEG::FFMPEG(FileBase *file_base)
1030 {
1031         fmt_ctx = 0;
1032         this->file_base = file_base;
1033         memset(file_format,0,sizeof(file_format));
1034         mux_lock = new Condition(0,"FFMPEG::mux_lock",0);
1035         flow_lock = new Condition(1,"FFStream::flow_lock",0);
1036         done = -1;
1037         flow = 1;
1038         decoding = encoding = 0;
1039         has_audio = has_video = 0;
1040         opts = 0;
1041         opt_duration = -1;
1042         opt_video_filter = 0;
1043         opt_audio_filter = 0;
1044         char option_path[BCTEXTLEN];
1045         set_option_path(option_path, "%s", "ffmpeg.opts");
1046         read_options(option_path, opts);
1047 }
1048
1049 FFMPEG::~FFMPEG()
1050 {
1051         ff_lock("FFMPEG::~FFMPEG()");
1052         close_encoder();
1053         ffaudio.remove_all_objects();
1054         ffvideo.remove_all_objects();
1055         if( fmt_ctx ) avformat_close_input(&fmt_ctx);
1056         ff_unlock();
1057         delete flow_lock;
1058         delete mux_lock;
1059         av_dict_free(&opts);
1060         delete [] opt_video_filter;
1061         delete [] opt_audio_filter;
1062 }
1063
1064 int FFMPEG::check_sample_rate(AVCodec *codec, int sample_rate)
1065 {
1066         const int *p = codec->supported_samplerates;
1067         if( !p ) return sample_rate;
1068         while( *p != 0 ) {
1069                 if( *p == sample_rate ) return *p;
1070                 ++p;
1071         }
1072         return 0;
1073 }
1074
1075 static inline AVRational std_frame_rate(int i)
1076 {
1077         static const int m1 = 1001*12, m2 = 1000*12;
1078         static const int freqs[] = {
1079                 40*m1, 48*m1, 50*m1, 60*m1, 80*m1,120*m1, 240*m1,
1080                 24*m2, 30*m2, 60*m2, 12*m2, 15*m2, 48*m2, 0,
1081         };
1082         int freq = i<30*12 ? (i+1)*1001 : freqs[i-30*12];
1083         return (AVRational) { freq, 1001*12 };
1084 }
1085
1086 AVRational FFMPEG::check_frame_rate(AVCodec *codec, double frame_rate)
1087 {
1088         const AVRational *p = codec->supported_framerates;
1089         AVRational rate, best_rate = (AVRational) { 0, 0 };
1090         double max_err = 1.;  int i = 0;
1091         while( ((p ? (rate=*p++) : (rate=std_frame_rate(i++))), rate.num) != 0 ) {
1092                 double framerate = (double) rate.num / rate.den;
1093                 double err = fabs(frame_rate/framerate - 1.);
1094                 if( err >= max_err ) continue;
1095                 max_err = err;
1096                 best_rate = rate;
1097         }
1098         return max_err < 0.0001 ? best_rate : (AVRational) { 0, 0 };
1099 }
1100
1101 AVRational FFMPEG::to_sample_aspect_ratio(Asset *asset)
1102 {
1103 #if 1
1104         double display_aspect = asset->width / (double)asset->height;
1105         double sample_aspect = asset->aspect_ratio / display_aspect;
1106         int width = 1000000, height = width * sample_aspect + 0.5;
1107         float w, h;
1108         MWindow::create_aspect_ratio(w, h, width, height);
1109         return (AVRational){(int)h, (int)w};
1110 #else
1111 // square pixels
1112         return (AVRational){1, 1};
1113 #endif
1114 }
1115
1116 AVRational FFMPEG::to_time_base(int sample_rate)
1117 {
1118         return (AVRational){1, sample_rate};
1119 }
1120
1121 void FFMPEG::set_option_path(char *path, const char *fmt, ...)
1122 {
1123         get_exe_path(path);
1124         strcat(path, "/ffmpeg/");
1125         path += strlen(path);
1126         va_list ap;
1127         va_start(ap, fmt);
1128         vsprintf(path, fmt, ap);
1129         va_end(ap);
1130 }
1131
1132 void FFMPEG::get_option_path(char *path, const char *type, const char *spec)
1133 {
1134         if( *spec == '/' )
1135                 strcpy(path, spec);
1136         else
1137                 set_option_path(path, "%s/%s", type, spec);
1138 }
1139
1140 int FFMPEG::get_format(char *format, const char *path, const char *spec)
1141 {
1142         char option_path[BCTEXTLEN], line[BCTEXTLEN], codec[BCTEXTLEN];
1143         get_option_path(option_path, path, spec);
1144         FILE *fp = fopen(option_path,"r");
1145         if( !fp ) return 1;
1146         int ret = 0;
1147         if( !fgets(line, sizeof(line), fp) ) ret = 1;
1148         if( !ret ) {
1149                 line[sizeof(line)-1] = 0;
1150                 ret = scan_option_line(line, format, codec);
1151         }
1152         fclose(fp);
1153         return ret;
1154 }
1155
1156 int FFMPEG::get_codec(char *codec, const char *path, const char *spec)
1157 {
1158         char option_path[BCTEXTLEN], line[BCTEXTLEN], format[BCTEXTLEN];
1159         get_option_path(option_path, path, spec);
1160         FILE *fp = fopen(option_path,"r");
1161         if( !fp ) return 1;
1162         int ret = 0;
1163         if( !fgets(line, sizeof(line), fp) ) ret = 1;
1164         fclose(fp);
1165         if( !ret ) {
1166                 line[sizeof(line)-1] = 0;
1167                 ret = scan_option_line(line, format, codec);
1168         }
1169         if( !ret ) {
1170                 char *vp = codec, *ep = vp+BCTEXTLEN-1;
1171                 while( vp < ep && *vp && *vp != '|' ) ++vp;
1172                 if( *vp == '|' ) --vp;
1173                 while( vp > codec && (*vp==' ' || *vp=='\t') ) *vp-- = 0;
1174         }
1175         return ret;
1176 }
1177
1178 int FFMPEG::get_file_format()
1179 {
1180         int ret = 0;
1181         char audio_format[BCSTRLEN], video_format[BCSTRLEN];
1182         file_format[0] = audio_format[0] = video_format[0] = 0;
1183         Asset *asset = file_base->asset;
1184         if( !ret && asset->audio_data )
1185                 ret = get_format(audio_format, "audio", asset->acodec);
1186         if( !ret && asset->video_data )
1187                 ret = get_format(video_format, "video", asset->vcodec);
1188         if( !ret && !audio_format[0] && !video_format[0] )
1189                 ret = 1;
1190         if( !ret && audio_format[0] && video_format[0] &&
1191             strcmp(audio_format, video_format) ) ret = -1;
1192         if( !ret )
1193                 strcpy(file_format, audio_format[0] ? audio_format : video_format);
1194         return ret;
1195 }
1196
1197 int FFMPEG::scan_option_line(char *cp, char *tag, char *val)
1198 {
1199         while( *cp == ' ' || *cp == '\t' ) ++cp;
1200         char *bp = cp;
1201         while( *cp && *cp != ' ' && *cp != '\t' && *cp != '=' ) ++cp;
1202         int len = cp - bp;
1203         if( !len || len > BCSTRLEN-1 ) return 1;
1204         while( bp < cp ) *tag++ = *bp++;
1205         *tag = 0;
1206         while( *cp == ' ' || *cp == '\t' ) ++cp;
1207         if( *cp == '=' ) ++cp;
1208         while( *cp == ' ' || *cp == '\t' ) ++cp;
1209         bp = cp;
1210         while( *cp && *cp != '\n' ) ++cp;
1211         len = cp - bp;
1212         if( len > BCTEXTLEN-1 ) return 1;
1213         while( bp < cp ) *val++ = *bp++;
1214         *val = 0;
1215         return 0;
1216 }
1217
1218 int FFMPEG::load_defaults(const char *path, const char *type,
1219                  char *codec, char *codec_options, int len)
1220 {
1221         char default_file[BCTEXTLEN];
1222         FFMPEG::set_option_path(default_file, "%s/%s.dfl", path, type);
1223         FILE *fp = fopen(default_file,"r");
1224         if( !fp ) return 1;
1225         fgets(codec, BCSTRLEN, fp);
1226         char *cp = codec;
1227         while( *cp && *cp!='\n' ) ++cp;
1228         *cp = 0;
1229         while( len > 0 && fgets(codec_options, len, fp) ) {
1230                 int n = strlen(codec_options);
1231                 codec_options += n;  len -= n;
1232         }
1233         fclose(fp);
1234         FFMPEG::set_option_path(default_file, "%s/%s", path, codec);
1235         return FFMPEG::load_options(default_file, codec_options, len);
1236 }
1237
1238 void FFMPEG::set_asset_format(Asset *asset, const char *text)
1239 {
1240         if( asset->format != FILE_FFMPEG ) return;
1241         strcpy(asset->fformat, text);
1242         if( !asset->ff_audio_options[0] ) {
1243                 asset->audio_data = !load_defaults("audio", text, asset->acodec,
1244                         asset->ff_audio_options, sizeof(asset->ff_audio_options));
1245         }
1246         if( !asset->ff_video_options[0] ) {
1247                 asset->video_data = !load_defaults("video", text, asset->vcodec,
1248                         asset->ff_video_options, sizeof(asset->ff_video_options));
1249         }
1250 }
1251
1252 int FFMPEG::get_encoder(const char *options,
1253                 char *format, char *codec, char *bsfilter, char *bsargs)
1254 {
1255         FILE *fp = fopen(options,"r");
1256         if( !fp ) {
1257                 eprintf("FFMPEG::get_encoder: options open failed %s\n",options);
1258                 return 1;
1259         }
1260         if( get_encoder(fp, format, codec, bsfilter, bsargs) )
1261                 eprintf(_("FFMPEG::get_encoder:"
1262                           " err: format/codec not found %s\n"), options);
1263         fclose(fp);
1264         return 0;
1265 }
1266
1267 int FFMPEG::get_encoder(FILE *fp,
1268                 char *format, char *codec, char *bsfilter, char *bsargs)
1269 {
1270         format[0] = codec[0] = bsfilter[0] = bsargs[0] = 0;
1271         char line[BCTEXTLEN];
1272         if( !fgets(line, sizeof(line), fp) ) return 1;
1273         line[sizeof(line)-1] = 0;
1274         if( scan_option_line(line, format, codec) ) return 1;
1275         char *cp = codec;
1276         while( *cp && *cp != '|' ) ++cp;
1277         if( !*cp ) return 0;
1278         if( scan_option_line(cp+1, bsfilter, bsargs) ) return 1;
1279         do { *cp-- = 0; } while( cp>=codec && (*cp==' ' || *cp == '\t' ) );
1280         return 0;
1281 }
1282
1283 int FFMPEG::read_options(const char *options, AVDictionary *&opts)
1284 {
1285         FILE *fp = fopen(options,"r");
1286         if( !fp ) return 1;
1287         int ret = read_options(fp, options, opts);
1288         fclose(fp);
1289         return ret;
1290 }
1291
1292 int FFMPEG::scan_options(const char *options, AVDictionary *&opts, AVStream *st)
1293 {
1294         FILE *fp = fmemopen((void *)options,strlen(options),"r");
1295         if( !fp ) return 0;
1296         int ret = read_options(fp, options, opts);
1297         fclose(fp);
1298         AVDictionaryEntry *tag = av_dict_get(opts, "id", NULL, 0);
1299         if( tag ) st->id = strtol(tag->value,0,0);
1300         return ret;
1301 }
1302
1303 int FFMPEG::read_options(FILE *fp, const char *options, AVDictionary *&opts)
1304 {
1305         int ret = 0, no = 0;
1306         char line[BCTEXTLEN];
1307         while( !ret && fgets(line, sizeof(line), fp) ) {
1308                 line[sizeof(line)-1] = 0;
1309                 ++no;
1310                 if( line[0] == '#' ) continue;
1311                 if( line[0] == '\n' ) continue;
1312                 char key[BCSTRLEN], val[BCTEXTLEN];
1313                 if( scan_option_line(line, key, val) ) {
1314                         eprintf(_("FFMPEG::read_options:"
1315                                   " err reading %s: line %d\n"), options, no);
1316                         ret = 1;
1317                 }
1318                 if( !ret ) {
1319                         if( !strcmp(key, "duration") )
1320                                 opt_duration = strtod(val, 0);
1321                         else if( !strcmp(key, "video_filter") )
1322                                 opt_video_filter = cstrdup(val);
1323                         else if( !strcmp(key, "audio_filter") )
1324                                 opt_audio_filter = cstrdup(val);
1325                         else if( !strcmp(key, "loglevel") )
1326                                 set_loglevel(val);
1327                         else
1328                                 av_dict_set(&opts, key, val, 0);
1329                 }
1330         }
1331         return ret;
1332 }
1333
1334 int FFMPEG::load_options(const char *options, AVDictionary *&opts)
1335 {
1336         char option_path[BCTEXTLEN];
1337         set_option_path(option_path, "%s", options);
1338         return read_options(option_path, opts);
1339 }
1340
1341 int FFMPEG::load_options(const char *path, char *bfr, int len)
1342 {
1343         *bfr = 0;
1344         FILE *fp = fopen(path, "r");
1345         if( !fp ) return 1;
1346         fgets(bfr, len, fp); // skip hdr
1347         len = fread(bfr, 1, len-1, fp);
1348         if( len < 0 ) len = 0;
1349         bfr[len] = 0;
1350         fclose(fp);
1351         return 0;
1352 }
1353
1354 void FFMPEG::set_loglevel(const char *ap)
1355 {
1356         if( !ap || !*ap ) return;
1357         const struct {
1358                 const char *name;
1359                 int level;
1360         } log_levels[] = {
1361                 { "quiet"  , AV_LOG_QUIET   },
1362                 { "panic"  , AV_LOG_PANIC   },
1363                 { "fatal"  , AV_LOG_FATAL   },
1364                 { "error"  , AV_LOG_ERROR   },
1365                 { "warning", AV_LOG_WARNING },
1366                 { "info"   , AV_LOG_INFO    },
1367                 { "verbose", AV_LOG_VERBOSE },
1368                 { "debug"  , AV_LOG_DEBUG   },
1369         };
1370         for( int i=0; i<(int)(sizeof(log_levels)/sizeof(log_levels[0])); ++i ) {
1371                 if( !strcmp(log_levels[i].name, ap) ) {
1372                         av_log_set_level(log_levels[i].level);
1373                         return;
1374                 }
1375         }
1376         av_log_set_level(atoi(ap));
1377 }
1378
1379 double FFMPEG::to_secs(int64_t time, AVRational time_base)
1380 {
1381         double base_time = time == AV_NOPTS_VALUE ? 0 :
1382                 av_rescale_q(time, time_base, AV_TIME_BASE_Q);
1383         return base_time / AV_TIME_BASE; 
1384 }
1385
1386 int FFMPEG::info(char *text, int len)
1387 {
1388         if( len <= 0 ) return 0;
1389         decode_activate();
1390 #define report(s...) do { int n = snprintf(cp,len,s); cp += n;  len -= n; } while(0)
1391         char *cp = text;
1392         if( ffvideo.size() > 0 )
1393                 report("\n%d video stream%s\n",ffvideo.size(), ffvideo.size()!=1 ? "s" : "");
1394         for( int vidx=0; vidx<ffvideo.size(); ++vidx ) {
1395                 FFVideoStream *vid = ffvideo[vidx];
1396                 AVStream *st = vid->st;
1397                 AVCodecContext *avctx = st->codec;
1398                 report(_("vid%d (%d),  id 0x%06x:\n"), vid->idx, vid->fidx, avctx->codec_id);
1399                 const AVCodecDescriptor *desc = avcodec_descriptor_get(avctx->codec_id);
1400                 report("  video%d %s", vidx+1, desc ? desc->name : " (unkn)");
1401                 report(" %dx%d %5.2f", vid->width, vid->height, vid->frame_rate);
1402                 const char *pfn = av_get_pix_fmt_name(avctx->pix_fmt);
1403                 report(" pix %s\n", pfn ? pfn : "(unkn)");
1404                 double secs = to_secs(st->duration, st->time_base);
1405                 int64_t length = secs * vid->frame_rate + 0.5;
1406                 double ofs = to_secs((vid->nudge - st->start_time), st->time_base);
1407                 int64_t nudge = ofs * vid->frame_rate;
1408                 int ch = nudge >= 0 ? '+' : (nudge=-nudge, '-');
1409                 report("    %jd%c%jd frms %0.2f secs", length,ch,nudge, secs);
1410                 int hrs = secs/3600;  secs -= hrs*3600;
1411                 int mins = secs/60;  secs -= mins*60;
1412                 report("  %d:%02d:%05.2f\n", hrs, mins, secs);
1413         }
1414         if( ffaudio.size() > 0 )
1415                 report("\n%d audio stream%s\n",ffaudio.size(), ffaudio.size()!=1 ? "s" : "");
1416         for( int aidx=0; aidx<ffaudio.size(); ++aidx ) {
1417                 FFAudioStream *aud = ffaudio[aidx];
1418                 AVStream *st = aud->st;
1419                 AVCodecContext *avctx = st->codec;
1420                 report(_("aud%d (%d),  id 0x%06x:\n"), aud->idx, aud->fidx, avctx->codec_id);
1421                 const AVCodecDescriptor *desc = avcodec_descriptor_get(avctx->codec_id);
1422                 int nch = aud->channels, ch0 = aud->channel0+1;
1423                 report("  audio%d-%d %s", ch0, ch0+nch-1, desc ? desc->name : " (unkn)");
1424                 const char *fmt = av_get_sample_fmt_name(avctx->sample_fmt);
1425                 report(" %s %d", fmt, aud->sample_rate);
1426                 int sample_bits = av_get_bits_per_sample(avctx->codec_id);
1427                 report(" %dbits\n", sample_bits);
1428                 double secs = to_secs(st->duration, st->time_base);
1429                 int64_t length = secs * aud->sample_rate + 0.5;
1430                 double ofs = to_secs((aud->nudge - st->start_time), st->time_base);
1431                 int64_t nudge = ofs * aud->sample_rate;
1432                 int ch = nudge >= 0 ? '+' : (nudge=-nudge, '-');
1433                 report("    %jd%c%jd smpl %0.2f secs", length,ch,nudge, secs);
1434                 int hrs = secs/3600;  secs -= hrs*3600;
1435                 int mins = secs/60;  secs -= mins*60;
1436                 report("  %d:%02d:%05.2f\n", hrs, mins, secs);
1437         }
1438         if( fmt_ctx->nb_programs > 0 )
1439                 report("\n%d program%s\n",fmt_ctx->nb_programs, fmt_ctx->nb_programs!=1 ? "s" : "");
1440         for( int i=0; i<(int)fmt_ctx->nb_programs; ++i ) {
1441                 report("program %d", i+1);
1442                 AVProgram *pgrm = fmt_ctx->programs[i];
1443                 for( int j=0; j<(int)pgrm->nb_stream_indexes; ++j ) {
1444                         int idx = pgrm->stream_index[j];
1445                         int vidx = ffvideo.size();
1446                         while( --vidx>=0 && ffvideo[vidx]->fidx != idx );
1447                         if( vidx >= 0 ) {
1448                                 report(", vid%d", vidx);
1449                                 continue;
1450                         }
1451                         int aidx = ffaudio.size();
1452                         while( --aidx>=0 && ffaudio[aidx]->fidx != idx );
1453                         if( aidx >= 0 ) {
1454                                 report(", aud%d", aidx);
1455                                 continue;
1456                         }
1457                         report(", (%d)", pgrm->stream_index[j]);
1458                 }
1459                 report("\n");
1460         }
1461         report("\n");
1462         AVDictionaryEntry *tag = 0;
1463         while ((tag = av_dict_get(fmt_ctx->metadata, "", tag, AV_DICT_IGNORE_SUFFIX)))
1464                 report("%s=%s\n", tag->key, tag->value);
1465
1466         if( !len ) --cp;
1467         *cp = 0;
1468         return cp - text;
1469 #undef report
1470 }
1471
1472
1473 int FFMPEG::init_decoder(const char *filename)
1474 {
1475         ff_lock("FFMPEG::init_decoder");
1476         av_register_all();
1477         char file_opts[BCTEXTLEN];
1478         char *bp = strrchr(strcpy(file_opts, filename), '/');
1479         char *sp = strrchr(!bp ? file_opts : bp, '.');
1480         FILE *fp = 0;
1481         if( sp ) {
1482                 strcpy(sp, ".opts");
1483                 fp = fopen(file_opts, "r");
1484         }
1485         if( fp ) {
1486                 read_options(fp, file_opts, opts);
1487                 fclose(fp);
1488         }
1489         else
1490                 load_options("decode.opts", opts);
1491         AVDictionary *fopts = 0;
1492         av_dict_copy(&fopts, opts, 0);
1493         int ret = avformat_open_input(&fmt_ctx, filename, NULL, &fopts);
1494         av_dict_free(&fopts);
1495         if( ret >= 0 )
1496                 ret = avformat_find_stream_info(fmt_ctx, NULL);
1497         if( !ret ) {
1498                 decoding = -1;
1499         }
1500         ff_unlock();
1501         return !ret ? 0 : 1;
1502 }
1503
1504 int FFMPEG::open_decoder()
1505 {
1506         struct stat st;
1507         if( stat(fmt_ctx->filename, &st) < 0 ) {
1508                 eprintf("FFMPEG::open_decoder: can't stat file: %s\n",
1509                         fmt_ctx->filename);
1510                 return 1;
1511         }
1512
1513         int64_t file_bits = 8 * st.st_size;
1514         if( !fmt_ctx->bit_rate && opt_duration > 0 )
1515                 fmt_ctx->bit_rate = file_bits / opt_duration;
1516
1517         int estimated = 0;
1518         if( fmt_ctx->bit_rate > 0 ) {
1519                 for( int i=0; i<(int)fmt_ctx->nb_streams; ++i ) {
1520                         AVStream *st = fmt_ctx->streams[i];
1521                         if( st->duration != AV_NOPTS_VALUE ) continue;
1522                         if( st->time_base.num > INT64_MAX / fmt_ctx->bit_rate ) continue;
1523                         st->duration = av_rescale(file_bits, st->time_base.den,
1524                                 fmt_ctx->bit_rate * (int64_t) st->time_base.num);
1525                         estimated = 1;
1526                 }
1527         }
1528         if( estimated )
1529                 printf("FFMPEG::open_decoder: some stream times estimated\n");
1530
1531         ff_lock("FFMPEG::open_decoder");
1532         int bad_time = 0;
1533         for( int i=0; i<(int)fmt_ctx->nb_streams; ++i ) {
1534                 AVStream *st = fmt_ctx->streams[i];
1535                 if( st->duration == AV_NOPTS_VALUE ) bad_time = 1;
1536                 AVCodecContext *avctx = st->codec;
1537                 const AVCodecDescriptor *codec_desc = avcodec_descriptor_get(avctx->codec_id);
1538                 if( !codec_desc ) continue;
1539                 if( avctx->codec_type == AVMEDIA_TYPE_VIDEO ) {
1540                         if( avctx->width < 1 ) continue;
1541                         if( avctx->height < 1 ) continue;
1542                         AVRational framerate = av_guess_frame_rate(fmt_ctx, st, 0);
1543                         if( framerate.num < 1 ) continue;
1544                         has_video = 1;
1545                         int vidx = ffvideo.size();
1546                         FFVideoStream *vid = new FFVideoStream(this, st, vidx, i);
1547                         vstrm_index.append(ffidx(vidx, 0));
1548                         ffvideo.append(vid);
1549                         vid->width = avctx->width;
1550                         vid->height = avctx->height;
1551                         vid->frame_rate = !framerate.den ? 0 : (double)framerate.num / framerate.den;
1552                         double secs = to_secs(st->duration, st->time_base);
1553                         vid->length = secs * vid->frame_rate;
1554                         vid->aspect_ratio = (double)st->sample_aspect_ratio.num / st->sample_aspect_ratio.den;
1555                         vid->nudge = st->start_time;
1556                         vid->reading = -1;
1557                         if( opt_video_filter )
1558                                 vid->create_filter(opt_video_filter, avctx,avctx);
1559                 }
1560                 else if( avctx->codec_type == AVMEDIA_TYPE_AUDIO ) {
1561                         if( avctx->channels < 1 ) continue;
1562                         if( avctx->sample_rate < 1 ) continue;
1563                         has_audio = 1;
1564                         int aidx = ffaudio.size();
1565                         FFAudioStream *aud = new FFAudioStream(this, st, aidx, i);
1566                         ffaudio.append(aud);
1567                         aud->channel0 = astrm_index.size();
1568                         aud->channels = avctx->channels;
1569                         for( int ch=0; ch<aud->channels; ++ch )
1570                                 astrm_index.append(ffidx(aidx, ch));
1571                         aud->sample_rate = avctx->sample_rate;
1572                         double secs = to_secs(st->duration, st->time_base);
1573                         aud->length = secs * aud->sample_rate;
1574                         if( avctx->sample_fmt != AV_SAMPLE_FMT_FLT ) {
1575                                 uint64_t layout = av_get_default_channel_layout(avctx->channels);
1576                                 if( !layout ) layout = ((uint64_t)1<<aud->channels) - 1;
1577                                 aud->resample_context = swr_alloc_set_opts(NULL,
1578                                         layout, AV_SAMPLE_FMT_FLT, avctx->sample_rate,
1579                                         layout, avctx->sample_fmt, avctx->sample_rate,
1580                                         0, NULL);
1581                                 swr_init(aud->resample_context);
1582                         }
1583                         aud->nudge = st->start_time;
1584                         aud->reading = -1;
1585                         if( opt_audio_filter )
1586                                 aud->create_filter(opt_audio_filter, avctx,avctx);
1587                 }
1588         }
1589         if( bad_time )
1590                 printf("FFMPEG::open_decoder: some stream have bad times\n");
1591         ff_unlock();
1592         return 0;
1593 }
1594
1595
1596 int FFMPEG::init_encoder(const char *filename)
1597 {
1598         int fd = ::open(filename,O_WRONLY);
1599         if( fd < 0 ) fd = open(filename,O_WRONLY+O_CREAT,0666);
1600         if( fd < 0 ) {
1601                 eprintf("FFMPEG::init_encoder: bad file path: %s\n", filename);
1602                 return 1;
1603         }
1604         ::close(fd);
1605         int ret = get_file_format();
1606         if( ret > 0 ) {
1607                 eprintf("FFMPEG::init_encoder: bad file format: %s\n", filename);
1608                 return 1;
1609         }
1610         if( ret < 0 ) {
1611                 eprintf("FFMPEG::init_encoder: mismatch audio/video file format: %s\n", filename);
1612                 return 1;
1613         }
1614         ff_lock("FFMPEG::init_encoder");
1615         av_register_all();
1616         avformat_alloc_output_context2(&fmt_ctx, 0, file_format, filename);
1617         if( !fmt_ctx ) {
1618                 eprintf("FFMPEG::init_encoder: failed: %s\n", filename);
1619                 ret = 1;
1620         }
1621         if( !ret ) {
1622                 encoding = -1;
1623                 load_options("encode.opts", opts);
1624         }
1625         ff_unlock();
1626         return ret;
1627 }
1628
1629 int FFMPEG::open_encoder(const char *type, const char *spec)
1630 {
1631
1632         Asset *asset = file_base->asset;
1633         char *filename = asset->path;
1634         AVDictionary *sopts = 0;
1635         av_dict_copy(&sopts, opts, 0);
1636         char option_path[BCTEXTLEN];
1637         set_option_path(option_path, "%s/%s.opts", type, type);
1638         read_options(option_path, sopts);
1639         get_option_path(option_path, type, spec);
1640         char format_name[BCSTRLEN], codec_name[BCTEXTLEN];
1641         char bsfilter[BCSTRLEN], bsargs[BCTEXTLEN];
1642         if( get_encoder(option_path, format_name, codec_name, bsfilter, bsargs) ) {
1643                 eprintf("FFMPEG::open_encoder: get_encoder failed %s:%s\n",
1644                         option_path, filename);
1645                 return 1;
1646         }
1647
1648         if( !strcmp(codec_name, CODEC_TAG_DVSD) ) strcpy(codec_name, "dv");
1649         else if( !strcmp(codec_name, CODEC_TAG_MJPEG) ) strcpy(codec_name, "mjpeg");
1650         else if( !strcmp(codec_name, CODEC_TAG_JPEG) ) strcpy(codec_name, "jpeg");
1651
1652         int ret = 0;
1653         ff_lock("FFMPEG::open_encoder");
1654         FFStream *fst = 0;
1655         AVStream *st = 0;
1656
1657         const AVCodecDescriptor *codec_desc = 0;
1658         AVCodec *codec = avcodec_find_encoder_by_name(codec_name);
1659         if( !codec ) {
1660                 eprintf("FFMPEG::open_encoder: cant find codec %s:%s\n",
1661                         codec_name, filename);
1662                 ret = 1;
1663         }
1664         if( !ret ) {
1665                 codec_desc = avcodec_descriptor_get(codec->id);
1666                 if( !codec_desc ) {
1667                         eprintf("FFMPEG::open_encoder: unknown codec %s:%s\n",
1668                                 codec_name, filename);
1669                         ret = 1;
1670                 }
1671         }
1672         if( !ret ) {
1673                 st = avformat_new_stream(fmt_ctx, 0);
1674                 if( !st ) {
1675                         eprintf("FFMPEG::open_encoder: cant create stream %s:%s\n",
1676                                 codec_name, filename);
1677                         ret = 1;
1678                 }
1679         } 
1680         if( !ret ) {
1681                 AVCodecContext *ctx = st->codec;
1682                 switch( codec_desc->type ) {
1683                 case AVMEDIA_TYPE_AUDIO: {
1684                         if( has_audio ) {
1685                                 eprintf("FFMPEG::open_encoder: duplicate audio %s:%s\n",
1686                                         codec_name, filename);
1687                                 ret = 1;
1688                                 break;
1689                         }
1690                         has_audio = 1;
1691                         if( scan_options(asset->ff_audio_options, sopts, st) ) {
1692                                 eprintf("FFMPEG::open_encoder: bad audio options %s:%s\n",
1693                                         codec_name, filename);
1694                                 ret = 1;
1695                                 break;
1696                         }
1697                         if( asset->ff_audio_bitrate > 0 ) {
1698                                 ctx->bit_rate = asset->ff_audio_bitrate;
1699                                 char arg[BCSTRLEN];
1700                                 sprintf(arg, "%d", asset->ff_audio_bitrate);
1701                                 av_dict_set(&sopts, "b", arg, 0);
1702                         }
1703                         int aidx = ffaudio.size();
1704                         int fidx = aidx + ffvideo.size();
1705                         FFAudioStream *aud = new FFAudioStream(this, st, aidx, fidx);
1706                         ffaudio.append(aud);  fst = aud;
1707                         aud->sample_rate = asset->sample_rate;
1708                         ctx->channels = aud->channels = asset->channels;
1709                         for( int ch=0; ch<aud->channels; ++ch )
1710                                 astrm_index.append(ffidx(aidx, ch));
1711                         ctx->channel_layout =  av_get_default_channel_layout(ctx->channels);
1712                         ctx->sample_rate = check_sample_rate(codec, asset->sample_rate);
1713                         if( !ctx->sample_rate ) {
1714                                 eprintf("FFMPEG::open_encoder:"
1715                                         " check_sample_rate failed %s\n", filename);
1716                                 ret = 1;
1717                                 break;
1718                         }
1719                         ctx->time_base = st->time_base = (AVRational){1, aud->sample_rate};
1720                         ctx->sample_fmt = codec->sample_fmts[0];
1721                         uint64_t layout = av_get_default_channel_layout(ctx->channels);
1722                         aud->resample_context = swr_alloc_set_opts(NULL,
1723                                 layout, ctx->sample_fmt, aud->sample_rate,
1724                                 layout, AV_SAMPLE_FMT_FLT, ctx->sample_rate,
1725                                 0, NULL);
1726                         swr_init(aud->resample_context);
1727                         aud->writing = -1;
1728                         break; }
1729                 case AVMEDIA_TYPE_VIDEO: {
1730                         if( has_video ) {
1731                                 eprintf("FFMPEG::open_encoder: duplicate video %s:%s\n",
1732                                         codec_name, filename);
1733                                 ret = 1;
1734                                 break;
1735                         }
1736                         has_video = 1;
1737                         if( scan_options(asset->ff_video_options, sopts, st) ) {
1738                                 eprintf("FFMPEG::open_encoder: bad video options %s:%s\n",
1739                                         codec_name, filename);
1740                                 ret = 1;
1741                                 break;
1742                         }
1743                         if( asset->ff_video_bitrate > 0 ) {
1744                                 ctx->bit_rate = asset->ff_video_bitrate;
1745                                 char arg[BCSTRLEN];
1746                                 sprintf(arg, "%d", asset->ff_video_bitrate);
1747                                 av_dict_set(&sopts, "b", arg, 0);
1748                         }
1749                         else if( asset->ff_video_quality > 0 ) {
1750                                 ctx->global_quality = asset->ff_video_quality * FF_QP2LAMBDA;
1751                                 ctx->qmin    = ctx->qmax =  asset->ff_video_quality;
1752                                 ctx->mb_lmin = ctx->qmin * FF_QP2LAMBDA;
1753                                 ctx->mb_lmax = ctx->qmax * FF_QP2LAMBDA;
1754                                 ctx->flags |= CODEC_FLAG_QSCALE;
1755                                 char arg[BCSTRLEN];
1756                                 av_dict_set(&sopts, "flags", "+qscale", 0);
1757                                 sprintf(arg, "%d", asset->ff_video_quality);
1758                                 av_dict_set(&sopts, "qscale", arg, 0);
1759                                 sprintf(arg, "%d", ctx->global_quality);
1760                                 av_dict_set(&sopts, "global_quality", arg, 0);
1761                         }
1762                         int vidx = ffvideo.size();
1763                         int fidx = vidx + ffaudio.size();
1764                         FFVideoStream *vid = new FFVideoStream(this, st, vidx, fidx);
1765                         vstrm_index.append(ffidx(vidx, 0));
1766                         ffvideo.append(vid);  fst = vid;
1767                         vid->width = asset->width;
1768                         ctx->width = (vid->width+3) & ~3;
1769                         vid->height = asset->height;
1770                         ctx->height = (vid->height+3) & ~3;
1771                         vid->frame_rate = asset->frame_rate;
1772                         ctx->sample_aspect_ratio = to_sample_aspect_ratio(asset);
1773                         ctx->pix_fmt = codec->pix_fmts ? codec->pix_fmts[0] : AV_PIX_FMT_YUV420P;
1774                         AVRational frame_rate = check_frame_rate(codec, vid->frame_rate);
1775                         if( !frame_rate.num || !frame_rate.den ) {
1776                                 eprintf("FFMPEG::open_encoder:"
1777                                         " check_frame_rate failed %s\n", filename);
1778                                 ret = 1;
1779                                 break;
1780                         }
1781                         ctx->time_base = (AVRational) { frame_rate.den, frame_rate.num };
1782                         st->time_base = ctx->time_base;
1783                         vid->writing = -1;
1784                         break; }
1785                 default:
1786                         eprintf("FFMPEG::open_encoder: not audio/video, %s:%s\n",
1787                                 codec_name, filename);
1788                         ret = 1;
1789                 }
1790         }
1791         if( !ret ) {
1792                 if( fmt_ctx->oformat->flags & AVFMT_GLOBALHEADER )
1793                         st->codec->flags |= CODEC_FLAG_GLOBAL_HEADER;
1794
1795                 ret = avcodec_open2(st->codec, codec, &sopts);
1796                 if( ret < 0 ) {
1797                         ff_err(ret,"FFMPEG::open_encoder");
1798                         eprintf("FFMPEG::open_encoder: open failed %s:%s\n",
1799                                 codec_name, filename);
1800                         ret = 1;
1801                 }
1802                 else
1803                         ret = 0;
1804         }
1805         if( !ret ) {
1806                 if( fst && bsfilter[0] )
1807                         fst->add_bsfilter(bsfilter, !bsargs[0] ? 0 : bsargs);
1808         }
1809
1810         ff_unlock();
1811         if( !ret )
1812                 start_muxer();
1813         av_dict_free(&sopts);
1814         return ret;
1815 }
1816
1817 int FFMPEG::close_encoder()
1818 {
1819         stop_muxer();
1820         if( encoding > 0 ) {
1821                 av_write_trailer(fmt_ctx);
1822                 if( !(fmt_ctx->flags & AVFMT_NOFILE) )
1823                         avio_closep(&fmt_ctx->pb);
1824         }
1825         encoding = 0;
1826         return 0;
1827 }
1828
1829 int FFMPEG::decode_activate()
1830 {
1831         if( decoding < 0 ) {
1832                 decoding = 0;
1833                 for( int vidx=0; vidx<ffvideo.size(); ++vidx )
1834                         ffvideo[vidx]->nudge = AV_NOPTS_VALUE;
1835                 for( int aidx=0; aidx<ffaudio.size(); ++aidx )
1836                         ffaudio[aidx]->nudge = AV_NOPTS_VALUE;
1837                 // set nudges for each program stream set
1838                 int npgrms = fmt_ctx->nb_programs;
1839                 for( int i=0; i<npgrms; ++i ) {
1840                         AVProgram *pgrm = fmt_ctx->programs[i];
1841                         // first start time video stream
1842                         int64_t vstart_time = -1, astart_time = -1;
1843                         for( int j=0; j<(int)pgrm->nb_stream_indexes; ++j ) {
1844                                 int fidx = pgrm->stream_index[j];
1845                                 AVStream *st = fmt_ctx->streams[fidx];
1846                                 AVCodecContext *avctx = st->codec;
1847                                 if( avctx->codec_type == AVMEDIA_TYPE_VIDEO ) {
1848                                         if( st->start_time == AV_NOPTS_VALUE ) continue;
1849                                         if( vstart_time > st->start_time ) continue;
1850                                         vstart_time = st->start_time;
1851                                         continue;
1852                                 }
1853                                 if( avctx->codec_type == AVMEDIA_TYPE_VIDEO ) {
1854                                         if( st->start_time == AV_NOPTS_VALUE ) continue;
1855                                         if( astart_time > st->start_time ) continue;
1856                                         astart_time = st->start_time;
1857                                         continue;
1858                                 }
1859                         }
1860                         // match program streams to max start_time
1861                         int64_t nudge = vstart_time > astart_time ? vstart_time : astart_time;
1862                         for( int j=0; j<(int)pgrm->nb_stream_indexes; ++j ) {
1863                                 int fidx = pgrm->stream_index[j];
1864                                 AVStream *st = fmt_ctx->streams[fidx];
1865                                 AVCodecContext *avctx = st->codec;
1866                                 if( avctx->codec_type == AVMEDIA_TYPE_VIDEO ) {
1867                                         for( int k=0; k<ffvideo.size(); ++k ) {
1868                                                 if( ffvideo[k]->fidx != fidx ) continue;
1869                                                 ffvideo[k]->nudge = nudge;
1870                                         }
1871                                         continue;
1872                                 }
1873                                 if( avctx->codec_type == AVMEDIA_TYPE_AUDIO ) {
1874                                         for( int k=0; k<ffaudio.size(); ++k ) {
1875                                                 if( ffaudio[k]->fidx != fidx ) continue;
1876                                                 ffaudio[k]->nudge = nudge;
1877                                         }
1878                                         continue;
1879                                 }
1880                         }
1881                 }
1882                 // set nudges for any streams not yet set
1883                 int64_t vstart_time = 0, astart_time = 0;
1884                 int nstreams = fmt_ctx->nb_streams;
1885                 for( int i=0; i<nstreams; ++i ) {
1886                         AVStream *st = fmt_ctx->streams[i];
1887                         AVCodecContext *avctx = st->codec;
1888                         switch( avctx->codec_type ) {
1889                         case AVMEDIA_TYPE_VIDEO: {
1890                                 if( st->start_time == AV_NOPTS_VALUE ) continue;
1891                                 int vidx = ffvideo.size();
1892                                 while( --vidx >= 0 && ffvideo[vidx]->fidx != i );
1893                                 if( vidx >= 0 && ffvideo[vidx]->nudge != AV_NOPTS_VALUE ) continue;
1894                                 if( vstart_time >= st->start_time ) continue;
1895                                 vstart_time = st->start_time;
1896                                 break; }
1897                         case AVMEDIA_TYPE_AUDIO: {
1898                                 if( st->start_time == AV_NOPTS_VALUE ) continue;
1899                                 int aidx = ffaudio.size();
1900                                 while( --aidx >= 0 && ffaudio[aidx]->fidx != i );
1901                                 if( aidx >= 0 && ffaudio[aidx]->nudge != AV_NOPTS_VALUE ) continue;
1902                                 if( astart_time >= st->start_time ) continue;
1903                                 astart_time = st->start_time;
1904                                 break; }
1905                         default: break;
1906                         }
1907                 }
1908                 int64_t nudge = vstart_time > astart_time ? vstart_time : astart_time;
1909                 for( int vidx=0; vidx<ffvideo.size(); ++vidx ) {
1910                         if( ffvideo[vidx]->nudge != AV_NOPTS_VALUE ) continue;
1911                         ffvideo[vidx]->nudge = nudge;
1912                 }
1913                 for( int aidx=0; aidx<ffaudio.size(); ++aidx ) {
1914                         if( ffaudio[aidx]->nudge != AV_NOPTS_VALUE ) continue;
1915                         ffaudio[aidx]->nudge = nudge;
1916                 }
1917                 decoding = 1;
1918         }
1919         return decoding;
1920 }
1921
1922 int FFMPEG::encode_activate()
1923 {
1924         int ret = 0;
1925         if( encoding < 0 ) {
1926                 encoding = 0;
1927                 if( !(fmt_ctx->flags & AVFMT_NOFILE) &&
1928                     (ret=avio_open(&fmt_ctx->pb, fmt_ctx->filename, AVIO_FLAG_WRITE)) < 0 ) {
1929                         ff_err(ret, "FFMPEG::encode_activate: err opening : %s\n",
1930                                 fmt_ctx->filename);
1931                         return 1;
1932                 }
1933
1934                 AVDictionary *fopts = 0;
1935                 char option_path[BCTEXTLEN];
1936                 set_option_path(option_path, "format/%s", file_format);
1937                 read_options(option_path, fopts);
1938                 ret = avformat_write_header(fmt_ctx, &fopts);
1939                 av_dict_free(&fopts);
1940                 if( ret < 0 ) {
1941                         ff_err(ret, "FFMPEG::encode_activate: write header failed %s\n",
1942                                 fmt_ctx->filename);
1943                         return 1;
1944                 }
1945                 encoding = 1;
1946         }
1947         return encoding;
1948 }
1949
1950
1951 int FFMPEG::audio_seek(int stream, int64_t pos)
1952 {
1953         int aidx = astrm_index[stream].st_idx;
1954         FFAudioStream *aud = ffaudio[aidx];
1955         aud->audio_seek(pos);
1956         return 0;
1957 }
1958
1959 int FFMPEG::video_seek(int stream, int64_t pos)
1960 {
1961         int vidx = vstrm_index[stream].st_idx;
1962         FFVideoStream *vid = ffvideo[vidx];
1963         vid->video_seek(pos);
1964         return 0;
1965 }
1966
1967
1968 int FFMPEG::decode(int chn, int64_t pos, double *samples, int len)
1969 {
1970         if( !has_audio || chn >= astrm_index.size() ) return -1;
1971         int aidx = astrm_index[chn].st_idx;
1972         FFAudioStream *aud = ffaudio[aidx];
1973         if( aud->load(pos, len) < len ) return -1;
1974         int ch = astrm_index[chn].st_ch;
1975         int ret = aud->read(samples,len,ch);
1976         return ret;
1977 }
1978
1979 int FFMPEG::decode(int layer, int64_t pos, VFrame *vframe)
1980 {
1981         if( !has_video || layer >= vstrm_index.size() ) return -1;
1982         int vidx = vstrm_index[layer].st_idx;
1983         FFVideoStream *vid = ffvideo[vidx];
1984         return vid->load(vframe, pos);
1985 }
1986
1987
1988 int FFMPEG::encode(int stream, double **samples, int len)
1989 {
1990         FFAudioStream *aud = ffaudio[stream];
1991         return aud->encode(samples, len);
1992 }
1993
1994
1995 int FFMPEG::encode(int stream, VFrame *frame)
1996 {
1997         FFVideoStream *vid = ffvideo[stream];
1998         return vid->encode(frame);
1999 }
2000
2001 void FFMPEG::start_muxer()
2002 {
2003         if( !running() ) {
2004                 done = 0;
2005                 start();
2006         }
2007 }
2008
2009 void FFMPEG::stop_muxer()
2010 {
2011         if( running() ) {
2012                 done = 1;
2013                 mux_lock->unlock();
2014         }
2015         join();
2016 }
2017
2018 void FFMPEG::flow_off()
2019 {
2020         if( !flow ) return;
2021         flow_lock->lock("FFMPEG::flow_off");
2022         flow = 0;
2023 }
2024
2025 void FFMPEG::flow_on()
2026 {
2027         if( flow ) return;
2028         flow = 1;
2029         flow_lock->unlock();
2030 }
2031
2032 void FFMPEG::flow_ctl()
2033 {
2034         while( !flow ) {
2035                 flow_lock->lock("FFMPEG::flow_ctl");
2036                 flow_lock->unlock();
2037         }
2038 }
2039
2040 int FFMPEG::mux_audio(FFrame *frm)
2041 {
2042         FFPacket pkt;
2043         FFStream *fst = frm->fst;
2044         AVCodecContext *ctx = fst->st->codec;
2045         AVFrame *frame = *frm;
2046         AVRational tick_rate = {1, ctx->sample_rate};
2047         frame->pts = av_rescale_q(frm->position, tick_rate, ctx->time_base);
2048         int got_packet = 0;
2049         int ret = fst->encode_frame(pkt, frame, got_packet);
2050         if( ret >= 0 && got_packet )
2051                 ret = fst->write_packet(pkt);
2052         if( ret < 0 )
2053                 ff_err(ret, "FFMPEG::mux_audio");
2054         return ret >= 0 ? 0 : 1;
2055 }
2056
2057 int FFMPEG::mux_video(FFrame *frm)
2058 {
2059         FFPacket pkt;
2060         FFStream *fst = frm->fst;
2061         AVFrame *frame = *frm;
2062         frame->pts = frm->position;
2063         int got_packet = 0;
2064         int ret = fst->encode_frame(pkt, frame, got_packet);
2065         if( ret >= 0 && got_packet )
2066                 ret = fst->write_packet(pkt);
2067         if( ret < 0 )
2068                 ff_err(ret, "FFMPEG::mux_video");
2069         return ret >= 0 ? 0 : 1;
2070 }
2071
2072 void FFMPEG::mux()
2073 {
2074         for(;;) {
2075                 double atm = -1, vtm = -1;
2076                 FFrame *afrm = 0, *vfrm = 0;
2077                 int demand = 0;
2078                 for( int i=0; i<ffaudio.size(); ++i ) {  // earliest audio
2079                         FFStream *fst = ffaudio[i];
2080                         if( fst->frm_count < 3 ) { demand = 1; flow_on(); }
2081                         FFrame *frm = fst->frms.first;
2082                         if( !frm ) { if( !done ) return; continue; }
2083                         double tm = to_secs(frm->position, fst->st->codec->time_base);
2084                         if( atm < 0 || tm < atm ) { atm = tm;  afrm = frm; }
2085                 }
2086                 for( int i=0; i<ffvideo.size(); ++i ) {  // earliest video
2087                         FFStream *fst = ffvideo[i];
2088                         if( fst->frm_count < 2 ) { demand = 1; flow_on(); }
2089                         FFrame *frm = fst->frms.first;
2090                         if( !frm ) { if( !done ) return; continue; }
2091                         double tm = to_secs(frm->position, fst->st->codec->time_base);
2092                         if( vtm < 0 || tm < vtm ) { vtm = tm;  vfrm = frm; }
2093                 }
2094                 if( !demand ) flow_off();
2095                 if( !afrm && !vfrm ) break;
2096                 int v = !afrm ? -1 : !vfrm ? 1 : av_compare_ts(
2097                         vfrm->position, vfrm->fst->st->codec->time_base,
2098                         afrm->position, afrm->fst->st->codec->time_base);
2099                 FFrame *frm = v <= 0 ? vfrm : afrm;
2100                 if( frm == afrm ) mux_audio(frm);
2101                 if( frm == vfrm ) mux_video(frm);
2102                 frm->dequeue();
2103                 delete frm;
2104         }
2105 }
2106
2107 void FFMPEG::run()
2108 {
2109         while( !done ) {
2110                 mux_lock->lock("FFMPEG::run");
2111                 if( !done ) mux();
2112         }
2113         mux();
2114         for( int i=0; i<ffaudio.size(); ++i )
2115                 ffaudio[i]->flush();
2116         for( int i=0; i<ffvideo.size(); ++i )
2117                 ffvideo[i]->flush();
2118 }
2119
2120
2121 int FFMPEG::ff_total_audio_channels()
2122 {
2123         return astrm_index.size();
2124 }
2125
2126 int FFMPEG::ff_total_astreams()
2127 {
2128         return ffaudio.size();
2129 }
2130
2131 int FFMPEG::ff_audio_channels(int stream)
2132 {
2133         return ffaudio[stream]->channels;
2134 }
2135
2136 int FFMPEG::ff_sample_rate(int stream)
2137 {
2138         return ffaudio[stream]->sample_rate;
2139 }
2140
2141 const char* FFMPEG::ff_audio_format(int stream)
2142 {
2143         AVStream *st = ffaudio[stream]->st;
2144         AVCodecID id = st->codec->codec_id;
2145         const AVCodecDescriptor *desc = avcodec_descriptor_get(id);
2146         return desc ? desc->name : "Unknown";
2147 }
2148
2149 int FFMPEG::ff_audio_pid(int stream)
2150 {
2151         return ffaudio[stream]->st->id;
2152 }
2153
2154 int64_t FFMPEG::ff_audio_samples(int stream)
2155 {
2156         return ffaudio[stream]->length;
2157 }
2158
2159 // find audio astream/channels with this program,
2160 //   or all program audio channels (astream=-1)
2161 int FFMPEG::ff_audio_for_video(int vstream, int astream, int64_t &channel_mask)
2162 {
2163         channel_mask = 0;
2164         int pidx = -1;
2165         int vidx = ffvideo[vstream]->fidx;
2166         // find first program with this video stream
2167         for( int i=0; pidx<0 && i<(int)fmt_ctx->nb_programs; ++i ) {
2168                 AVProgram *pgrm = fmt_ctx->programs[i];
2169                 for( int j=0;  pidx<0 && j<(int)pgrm->nb_stream_indexes; ++j ) {
2170                         int st_idx = pgrm->stream_index[j];
2171                         AVStream *st = fmt_ctx->streams[st_idx];
2172                         if( st->codec->codec_type != AVMEDIA_TYPE_VIDEO ) continue;
2173                         if( st_idx == vidx ) pidx = i;
2174                 }
2175         }
2176         if( pidx < 0 ) return -1;
2177         int ret = -1;
2178         int64_t channels = 0;
2179         AVProgram *pgrm = fmt_ctx->programs[pidx];
2180         for( int j=0; j<(int)pgrm->nb_stream_indexes; ++j ) {
2181                 int aidx = pgrm->stream_index[j];
2182                 AVStream *st = fmt_ctx->streams[aidx];
2183                 if( st->codec->codec_type != AVMEDIA_TYPE_AUDIO ) continue;
2184                 if( astream > 0 ) { --astream;  continue; }
2185                 int astrm = -1;
2186                 for( int i=0; astrm<0 && i<ffaudio.size(); ++i )
2187                         if( ffaudio[i]->fidx == aidx ) astrm = i;
2188                 if( astrm >= 0 ) {
2189                         if( ret < 0 ) ret = astrm;
2190                         int64_t mask = (1 << ffaudio[astrm]->channels) - 1;
2191                         channels |= mask << ffaudio[astrm]->channel0;
2192                 }
2193                 if( !astream ) break;
2194         }
2195         channel_mask = channels;
2196         return ret;
2197 }
2198
2199
2200 int FFMPEG::ff_total_video_layers()
2201 {
2202         return vstrm_index.size();
2203 }
2204
2205 int FFMPEG::ff_total_vstreams()
2206 {
2207         return ffvideo.size();
2208 }
2209
2210 int FFMPEG::ff_video_width(int stream)
2211 {
2212         return ffvideo[stream]->width;
2213 }
2214
2215 int FFMPEG::ff_video_height(int stream)
2216 {
2217         return ffvideo[stream]->height;
2218 }
2219
2220 int FFMPEG::ff_set_video_width(int stream, int width)
2221 {
2222         int w = ffvideo[stream]->width;
2223         ffvideo[stream]->width = width;
2224         return w;
2225 }
2226
2227 int FFMPEG::ff_set_video_height(int stream, int height)
2228 {
2229         int h = ffvideo[stream]->height;
2230         ffvideo[stream]->height = height;
2231         return h;
2232 }
2233
2234 int FFMPEG::ff_coded_width(int stream)
2235 {
2236         AVStream *st = ffvideo[stream]->st;
2237         return st->codec->coded_width;
2238 }
2239
2240 int FFMPEG::ff_coded_height(int stream)
2241 {
2242         AVStream *st = ffvideo[stream]->st;
2243         return st->codec->coded_height;
2244 }
2245
2246 float FFMPEG::ff_aspect_ratio(int stream)
2247 {
2248         return ffvideo[stream]->aspect_ratio;
2249 }
2250
2251 const char* FFMPEG::ff_video_format(int stream)
2252 {
2253         AVStream *st = ffvideo[stream]->st;
2254         AVCodecID id = st->codec->codec_id;
2255         const AVCodecDescriptor *desc = avcodec_descriptor_get(id);
2256         return desc ? desc->name : "Unknown";
2257 }
2258
2259 double FFMPEG::ff_frame_rate(int stream)
2260 {
2261         return ffvideo[stream]->frame_rate;
2262 }
2263
2264 int64_t FFMPEG::ff_video_frames(int stream)
2265 {
2266         return ffvideo[stream]->length;
2267 }
2268
2269 int FFMPEG::ff_video_pid(int stream)
2270 {
2271         return ffvideo[stream]->st->id;
2272 }
2273
2274
2275 int FFMPEG::ff_cpus()
2276 {
2277         return file_base->file->cpus;
2278 }
2279
2280 int FFVideoStream::create_filter(const char *filter_spec,
2281                 AVCodecContext *src_ctx, AVCodecContext *sink_ctx)
2282 {
2283         avfilter_register_all();
2284         AVFilter *filter = avfilter_get_by_name(filter_spec);
2285         if( !filter || avfilter_pad_get_type(filter->inputs,0) != AVMEDIA_TYPE_VIDEO ) {
2286                 ff_err(AVERROR(EINVAL), "FFVideoStream::create_filter: %s\n", filter_spec);
2287                 return -1;
2288         }
2289         filter_graph = avfilter_graph_alloc();
2290         AVFilter *buffersrc = avfilter_get_by_name("buffer");
2291         AVFilter *buffersink = avfilter_get_by_name("buffersink");
2292
2293         int ret = 0;  char args[BCTEXTLEN];
2294         snprintf(args, sizeof(args),
2295                 "video_size=%dx%d:pix_fmt=%d:time_base=%d/%d:pixel_aspect=%d/%d",
2296                 src_ctx->width, src_ctx->height, src_ctx->pix_fmt,
2297                 src_ctx->time_base.num, src_ctx->time_base.den,
2298                 src_ctx->sample_aspect_ratio.num, src_ctx->sample_aspect_ratio.den);
2299         if( ret >= 0 )
2300                 ret = avfilter_graph_create_filter(&buffersrc_ctx, buffersrc, "in",
2301                         args, NULL, filter_graph);
2302         if( ret >= 0 )
2303                 ret = avfilter_graph_create_filter(&buffersink_ctx, buffersink, "out",
2304                         NULL, NULL, filter_graph);
2305         if( ret >= 0 )
2306                 ret = av_opt_set_bin(buffersink_ctx, "pix_fmts",
2307                         (uint8_t*)&sink_ctx->pix_fmt, sizeof(sink_ctx->pix_fmt),
2308                         AV_OPT_SEARCH_CHILDREN);
2309         if( ret < 0 )
2310                 ff_err(ret, "FFVideoStream::create_filter");
2311         else
2312                 ret = FFStream::create_filter(filter_spec);
2313         return ret >= 0 ? 0 : 1;
2314 }
2315
2316 int FFAudioStream::create_filter(const char *filter_spec,
2317                 AVCodecContext *src_ctx, AVCodecContext *sink_ctx)
2318 {
2319         avfilter_register_all();
2320         AVFilter *filter = avfilter_get_by_name(filter_spec);
2321         if( !filter || avfilter_pad_get_type(filter->inputs,0) != AVMEDIA_TYPE_AUDIO ) {
2322                 ff_err(AVERROR(EINVAL), "FFAudioStream::create_filter: %s\n", filter_spec);
2323                 return -1;
2324         }
2325         filter_graph = avfilter_graph_alloc();
2326         AVFilter *buffersrc = avfilter_get_by_name("abuffer");
2327         AVFilter *buffersink = avfilter_get_by_name("abuffersink");
2328         int ret = 0;  char args[BCTEXTLEN];
2329         snprintf(args, sizeof(args),
2330                 "time_base=%d/%d:sample_rate=%d:sample_fmt=%s:channel_layout=0x%jx",
2331                 src_ctx->time_base.num, src_ctx->time_base.den, src_ctx->sample_rate,
2332                 av_get_sample_fmt_name(src_ctx->sample_fmt), src_ctx->channel_layout);
2333         if( ret >= 0 )
2334                 ret = avfilter_graph_create_filter(&buffersrc_ctx, buffersrc, "in",
2335                         args, NULL, filter_graph);
2336         if( ret >= 0 )
2337                 ret = avfilter_graph_create_filter(&buffersink_ctx, buffersink, "out",
2338                         NULL, NULL, filter_graph);
2339         if( ret >= 0 )
2340                 ret = av_opt_set_bin(buffersink_ctx, "sample_fmts",
2341                         (uint8_t*)&sink_ctx->sample_fmt, sizeof(sink_ctx->sample_fmt),
2342                         AV_OPT_SEARCH_CHILDREN);
2343         if( ret >= 0 )
2344                 ret = av_opt_set_bin(buffersink_ctx, "channel_layouts",
2345                         (uint8_t*)&sink_ctx->channel_layout,
2346                         sizeof(sink_ctx->channel_layout), AV_OPT_SEARCH_CHILDREN);
2347         if( ret >= 0 )
2348                 ret = av_opt_set_bin(buffersink_ctx, "sample_rates",
2349                         (uint8_t*)&sink_ctx->sample_rate, sizeof(sink_ctx->sample_rate),
2350                         AV_OPT_SEARCH_CHILDREN);
2351         if( ret < 0 )
2352                 ff_err(ret, "FFAudioStream::create_filter");
2353         else
2354                 ret = FFStream::create_filter(filter_spec);
2355         return ret >= 0 ? 0 : 1;
2356 }
2357
2358 int FFStream::create_filter(const char *filter_spec)
2359 {
2360         /* Endpoints for the filter graph. */
2361         AVFilterInOut *outputs = avfilter_inout_alloc();
2362         outputs->name = av_strdup("in");
2363         outputs->filter_ctx = buffersrc_ctx;
2364         outputs->pad_idx = 0;
2365         outputs->next = 0;
2366
2367         AVFilterInOut *inputs  = avfilter_inout_alloc();
2368         inputs->name = av_strdup("out");
2369         inputs->filter_ctx = buffersink_ctx;
2370         inputs->pad_idx = 0;
2371         inputs->next = 0;
2372
2373         int ret = !outputs->name || !inputs->name ? -1 : 0;
2374         if( ret >= 0 )
2375                 ret = avfilter_graph_parse_ptr(filter_graph, filter_spec,
2376                         &inputs, &outputs, NULL);
2377         if( ret >= 0 )
2378                 ret = avfilter_graph_config(filter_graph, NULL);
2379
2380         if( ret < 0 )
2381                 ff_err(ret, "FFStream::create_filter");
2382         avfilter_inout_free(&inputs);
2383         avfilter_inout_free(&outputs);
2384         return ret;
2385 }
2386
2387 void FFStream::add_bsfilter(const char *bsf, const char *ap)
2388 {
2389         bsfilter.append(new BSFilter(bsf,ap));
2390 }
2391
2392 int FFStream::bs_filter(AVPacket *pkt)
2393 {
2394         if( !bsfilter.size() ) return 0;
2395         av_packet_split_side_data(pkt);
2396
2397         int ret = 0;
2398         for( int i=0; i<bsfilter.size(); ++i ) {
2399                 AVPacket bspkt = *pkt;
2400                 ret = av_bitstream_filter_filter(bsfilter[i]->bsfc,
2401                          st->codec, bsfilter[i]->args, &bspkt.data, &bspkt.size,
2402                          pkt->data, pkt->size, pkt->flags & AV_PKT_FLAG_KEY);
2403                 if( ret < 0 ) break;
2404                 int size = bspkt.size;
2405                 uint8_t *data = bspkt.data;
2406                 if( !ret && bspkt.data != pkt->data ) {
2407                         size = bspkt.size;
2408                         data = (uint8_t *)av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE);
2409                         if( !data ) { ret = AVERROR(ENOMEM);  break; }
2410                         memcpy(data, bspkt.data, size);
2411                         memset(data+size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
2412                         ret = 1;
2413                 }
2414                 if( ret > 0 ) {
2415                         pkt->side_data = 0;  pkt->side_data_elems = 0;
2416                         av_packet_unref(pkt);
2417                         ret = av_packet_from_data(&bspkt, data, size);
2418                         if( ret < 0 ) break;
2419                 }
2420                 *pkt = bspkt;
2421         }
2422         if( ret < 0 )
2423                 ff_err(ret,"FFStream::bs_filter");
2424         return ret;
2425 }
2426
2427 int FFMPEG::scan(IndexState *index_state, int64_t *scan_position, int *canceled)
2428 {
2429         AVPacket pkt;
2430         av_init_packet(&pkt);
2431         AVFrame *frame = av_frame_alloc();
2432         if( !frame ) {
2433                 fprintf(stderr, "FFMPEG::scan: av_frame_alloc failed\n");
2434                 return -1;
2435         }
2436
2437         index_state->add_video_markers(ffvideo.size());
2438         index_state->add_audio_markers(ffaudio.size());
2439
2440         for( int i=0; i<(int)fmt_ctx->nb_streams; ++i ) {
2441                 AVDictionary *copts = 0;
2442                 av_dict_copy(&copts, opts, 0);
2443                 AVStream *st = fmt_ctx->streams[i];
2444                 AVCodecID codec_id = st->codec->codec_id;
2445                 AVCodec *decoder = avcodec_find_decoder(codec_id);
2446                 if( avcodec_open2(st->codec, decoder, &copts) < 0 )
2447                         fprintf(stderr, "FFMPEG::scan: codec open failed\n");
2448                 av_dict_free(&copts);
2449         }
2450         int errs = 0;
2451         for( int64_t count=0; !*canceled; ++count ) {
2452                 av_packet_unref(&pkt);
2453                 pkt.data = 0; pkt.size = 0;
2454
2455                 int ret = av_read_frame(fmt_ctx, &pkt);
2456                 if( ret < 0 ) {
2457                         if( ret == AVERROR_EOF ) break;
2458                         if( ++errs > 100 ) {
2459                                 ff_err(ret, "over 100 read_frame errs\n");
2460                                 break;
2461                         }
2462                         continue;
2463                 }
2464                 if( !pkt.data ) continue;
2465                 int i = pkt.stream_index;
2466                 if( i < 0 || i >= (int)fmt_ctx->nb_streams ) continue;
2467                 AVStream *st = fmt_ctx->streams[i];
2468                 AVCodecContext *avctx = st->codec;
2469                 if( pkt.pos > *scan_position ) *scan_position = pkt.pos;
2470
2471                 switch( avctx->codec_type ) {
2472                 case AVMEDIA_TYPE_VIDEO: {
2473                         int vidx = ffvideo.size();
2474                         while( --vidx>=0 && ffvideo[vidx]->fidx != i );
2475                         if( vidx < 0 ) break;
2476                         FFVideoStream *vid = ffvideo[vidx];
2477                         int64_t tstmp = pkt.dts;
2478                         if( tstmp == AV_NOPTS_VALUE ) tstmp = pkt.pts;
2479                         if( tstmp != AV_NOPTS_VALUE && (pkt.flags & AV_PKT_FLAG_KEY) && pkt.pos > 0 ) {
2480                                 if( vid->nudge != AV_NOPTS_VALUE ) tstmp -= vid->nudge;
2481                                 double secs = to_secs(tstmp, st->time_base);
2482                                 int64_t frm = secs * vid->frame_rate + 0.5;
2483                                 if( frm < 0 ) frm = 0;
2484                                 index_state->put_video_mark(vidx, frm, pkt.pos);
2485                         }
2486 #if 0
2487                         while( pkt.size > 0 ) {
2488                                 av_frame_unref(frame);
2489                                 int got_frame = 0;
2490                                 int ret = vid->decode_frame(&pkt, frame, got_frame);
2491                                 if( ret <= 0 ) break;
2492 //                              if( got_frame ) {}
2493                                 pkt.data += ret;
2494                                 pkt.size -= ret;
2495                         }
2496 #endif
2497                         break; }
2498                 case AVMEDIA_TYPE_AUDIO: {
2499                         int aidx = ffaudio.size();
2500                         while( --aidx>=0 && ffaudio[aidx]->fidx != i );
2501                         if( aidx < 0 ) break;
2502                         FFAudioStream *aud = ffaudio[aidx];
2503                         int64_t tstmp = pkt.pts;
2504                         if( tstmp == AV_NOPTS_VALUE ) tstmp = pkt.dts;
2505                         if( tstmp != AV_NOPTS_VALUE && (pkt.flags & AV_PKT_FLAG_KEY) && pkt.pos > 0 ) {
2506                                 if( aud->nudge != AV_NOPTS_VALUE ) tstmp -= aud->nudge;
2507                                 double secs = to_secs(tstmp, st->time_base);
2508                                 int64_t sample = secs * aud->sample_rate + 0.5;
2509                                 if( sample < 0 ) sample = 0;
2510                                 index_state->put_audio_mark(aidx, sample, pkt.pos);
2511                         }
2512                         while( pkt.size > 0 ) {
2513                                 int ch = aud->channel0,  nch = aud->channels;
2514                                 int64_t pos = index_state->pos(ch);
2515                                 if( pos != aud->curr_pos ) {
2516 if( abs(pos-aud->curr_pos) > 1 )
2517 printf("audio%d pad %ld %ld (%ld)\n", aud->idx, pos, aud->curr_pos, pos-aud->curr_pos);
2518                                         index_state->pad_data(ch, nch, aud->curr_pos);
2519                                 }
2520                                 av_frame_unref(frame);
2521                                 int got_frame = 0;
2522                                 int ret = aud->decode_frame(&pkt, frame, got_frame);
2523                                 if( ret <= 0 ) break;
2524                                 if( got_frame && frame->channels == nch ) {
2525                                         float *samples;
2526                                         int len = aud->get_samples(samples,
2527                                                  &frame->extended_data[0], frame->nb_samples);
2528                                         for( int i=0; i<nch; ++i )
2529                                                 index_state->put_data(ch+i,nch,samples+i,len);
2530                                         aud->curr_pos += len;
2531                                 }
2532                                 pkt.data += ret;
2533                                 pkt.size -= ret;
2534                         }
2535                         break; }
2536                 default: break;
2537                 }
2538         }
2539         av_frame_free(&frame);
2540         return 0;
2541 }
2542
2543 void FFStream::load_markers(IndexMarks &marks, double rate)
2544 {
2545         index_markers = &marks;
2546         int in = 0;
2547         int64_t sz = marks.size();
2548         int max_entries = fmt_ctx->max_index_size / sizeof(AVIndexEntry) - 1;
2549         int nb_ent = st->nb_index_entries;
2550 // some formats already have an index
2551         if( nb_ent > 0 ) {
2552                 AVIndexEntry *ep = &st->index_entries[nb_ent-1];
2553                 int64_t tstmp = ep->timestamp;
2554                 if( nudge != AV_NOPTS_VALUE ) tstmp -= nudge;
2555                 double secs = ffmpeg->to_secs(tstmp, st->time_base);
2556                 int64_t no = secs * rate;
2557                 while( in < sz && marks[in].no <= no ) ++in;
2558         }
2559         int64_t len = sz - in;
2560         int64_t count = max_entries - nb_ent;
2561         if( count > len ) count = len;
2562         for( int i=0; i<count; ++i ) {
2563                 int k = in + i * len / count;
2564                 int64_t no = marks[k].no, pos = marks[k].pos;
2565                 double secs = (double)no / rate;
2566                 int64_t tstmp = secs * st->time_base.den / st->time_base.num;
2567                 if( nudge != AV_NOPTS_VALUE ) tstmp += nudge;
2568                 av_add_index_entry(st, pos, tstmp, 0, 0, AVINDEX_KEYFRAME);
2569         }
2570 }
2571