]> git.sesse.net Git - ffmpeg/blob - libavformat/avisynth.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / avisynth.c
1 /*
2  * Avi/AvxSynth support
3  * Copyright (c) 2012 AvxSynth Team.
4  *
5  * This file is part of FFmpeg
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #include "libavutil/internal.h"
22 #include "libavcodec/internal.h"
23 #include "avformat.h"
24 #include "internal.h"
25
26 /* Enable function pointer definitions for runtime loading. */
27 #define AVSC_NO_DECLSPEC
28
29 /* Platform-specific directives for AviSynth vs AvxSynth. */
30 #ifdef _WIN32
31   #include <windows.h>
32   #undef EXTERN_C
33   #include "compat/avisynth/avisynth_c.h"
34   #include "compat/avisynth/avisynth_c_25.h"
35   #define AVISYNTH_LIB "avisynth"
36   #define USING_AVISYNTH
37 #else
38   #include <dlfcn.h>
39   #include "compat/avisynth/avxsynth_c.h"
40     #if defined (__APPLE__)
41       #define AVISYNTH_LIB "libavxsynth.dylib"
42     #else
43       #define AVISYNTH_LIB "libavxsynth.so"
44     #endif
45
46   #define LoadLibrary(x) dlopen(x, RTLD_NOW | RTLD_GLOBAL)
47   #define GetProcAddress dlsym
48   #define FreeLibrary dlclose
49 #endif
50
51 typedef struct AviSynthLibrary {
52     void *library;
53 #define AVSC_DECLARE_FUNC(name) name ## _func name
54     AVSC_DECLARE_FUNC(avs_bit_blt);
55     AVSC_DECLARE_FUNC(avs_clip_get_error);
56     AVSC_DECLARE_FUNC(avs_create_script_environment);
57     AVSC_DECLARE_FUNC(avs_delete_script_environment);
58     AVSC_DECLARE_FUNC(avs_get_audio);
59     AVSC_DECLARE_FUNC(avs_get_error);
60     AVSC_DECLARE_FUNC(avs_get_frame);
61     AVSC_DECLARE_FUNC(avs_get_version);
62     AVSC_DECLARE_FUNC(avs_get_video_info);
63     AVSC_DECLARE_FUNC(avs_invoke);
64     AVSC_DECLARE_FUNC(avs_release_clip);
65     AVSC_DECLARE_FUNC(avs_release_value);
66     AVSC_DECLARE_FUNC(avs_release_video_frame);
67     AVSC_DECLARE_FUNC(avs_take_clip);
68 #undef AVSC_DECLARE_FUNC
69 } AviSynthLibrary;
70
71 typedef struct AviSynthContext {
72     AVS_ScriptEnvironment *env;
73     AVS_Clip *clip;
74     const AVS_VideoInfo *vi;
75
76     /* avisynth_read_packet_video() iterates over this. */
77     int n_planes;
78     const int *planes;
79
80     int curr_stream;
81     int curr_frame;
82     int64_t curr_sample;
83
84     int error;
85
86     /* Linked list pointers. */
87     struct AviSynthContext *next;
88 } AviSynthContext;
89
90 static const int avs_planes_packed[1] = { 0 };
91 static const int avs_planes_grey[1]   = { AVS_PLANAR_Y };
92 static const int avs_planes_yuv[3]    = { AVS_PLANAR_Y, AVS_PLANAR_U,
93                                           AVS_PLANAR_V };
94
95 /* A conflict between C++ global objects, atexit, and dynamic loading requires
96  * us to register our own atexit handler to prevent double freeing. */
97 static AviSynthLibrary *avs_library = NULL;
98 static int avs_atexit_called        = 0;
99
100 /* Linked list of AviSynthContexts. An atexit handler destroys this list. */
101 static AviSynthContext *avs_ctx_list = NULL;
102
103 static av_cold void avisynth_atexit_handler(void);
104
105 static av_cold int avisynth_load_library(void)
106 {
107     avs_library = av_mallocz(sizeof(AviSynthLibrary));
108     if (!avs_library)
109         return AVERROR_UNKNOWN;
110
111     avs_library->library = LoadLibrary(AVISYNTH_LIB);
112     if (!avs_library->library)
113         goto init_fail;
114
115 #define LOAD_AVS_FUNC(name, continue_on_fail)                           \
116         avs_library->name =                                             \
117             (void *)GetProcAddress(avs_library->library, #name);        \
118         if (!continue_on_fail && !avs_library->name)                    \
119             goto fail;
120
121     LOAD_AVS_FUNC(avs_bit_blt, 0);
122     LOAD_AVS_FUNC(avs_clip_get_error, 0);
123     LOAD_AVS_FUNC(avs_create_script_environment, 0);
124     LOAD_AVS_FUNC(avs_delete_script_environment, 0);
125     LOAD_AVS_FUNC(avs_get_audio, 0);
126     LOAD_AVS_FUNC(avs_get_error, 1); // New to AviSynth 2.6
127     LOAD_AVS_FUNC(avs_get_frame, 0);
128     LOAD_AVS_FUNC(avs_get_version, 0);
129     LOAD_AVS_FUNC(avs_get_video_info, 0);
130     LOAD_AVS_FUNC(avs_invoke, 0);
131     LOAD_AVS_FUNC(avs_release_clip, 0);
132     LOAD_AVS_FUNC(avs_release_value, 0);
133     LOAD_AVS_FUNC(avs_release_video_frame, 0);
134     LOAD_AVS_FUNC(avs_take_clip, 0);
135 #undef LOAD_AVS_FUNC
136
137     atexit(avisynth_atexit_handler);
138     return 0;
139
140 fail:
141     FreeLibrary(avs_library->library);
142 init_fail:
143     av_freep(&avs_library);
144     return AVERROR_UNKNOWN;
145 }
146
147 /* Note that avisynth_context_create and avisynth_context_destroy
148  * do not allocate or free the actual context! That is taken care of
149  * by libavformat. */
150 static av_cold int avisynth_context_create(AVFormatContext *s)
151 {
152     AviSynthContext *avs = s->priv_data;
153     int ret;
154
155     if (!avs_library)
156         if (ret = avisynth_load_library())
157             return ret;
158
159     avs->env = avs_library->avs_create_script_environment(3);
160     if (avs_library->avs_get_error) {
161         const char *error = avs_library->avs_get_error(avs->env);
162         if (error) {
163             av_log(s, AV_LOG_ERROR, "%s\n", error);
164             return AVERROR_UNKNOWN;
165         }
166     }
167
168     if (!avs_ctx_list) {
169         avs_ctx_list = avs;
170     } else {
171         avs->next    = avs_ctx_list;
172         avs_ctx_list = avs;
173     }
174
175     return 0;
176 }
177
178 static av_cold void avisynth_context_destroy(AviSynthContext *avs)
179 {
180     if (avs_atexit_called)
181         return;
182
183     if (avs == avs_ctx_list) {
184         avs_ctx_list = avs->next;
185     } else {
186         AviSynthContext *prev = avs_ctx_list;
187         while (prev->next != avs)
188             prev = prev->next;
189         prev->next = avs->next;
190     }
191
192     if (avs->clip) {
193         avs_library->avs_release_clip(avs->clip);
194         avs->clip = NULL;
195     }
196     if (avs->env) {
197         avs_library->avs_delete_script_environment(avs->env);
198         avs->env = NULL;
199     }
200 }
201
202 static av_cold void avisynth_atexit_handler(void)
203 {
204     AviSynthContext *avs = avs_ctx_list;
205
206     while (avs) {
207         AviSynthContext *next = avs->next;
208         avisynth_context_destroy(avs);
209         avs = next;
210     }
211     FreeLibrary(avs_library->library);
212     av_freep(&avs_library);
213
214     avs_atexit_called = 1;
215 }
216
217 /* Create AVStream from audio and video data. */
218 static int avisynth_create_stream_video(AVFormatContext *s, AVStream *st)
219 {
220     AviSynthContext *avs = s->priv_data;
221     int planar = 0; // 0: packed, 1: YUV, 2: Y8
222
223     st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
224     st->codec->codec_id   = AV_CODEC_ID_RAWVIDEO;
225     st->codec->width      = avs->vi->width;
226     st->codec->height     = avs->vi->height;
227
228     st->time_base         = (AVRational) { avs->vi->fps_denominator,
229                                            avs->vi->fps_numerator };
230     st->avg_frame_rate    = (AVRational) { avs->vi->fps_numerator,
231                                            avs->vi->fps_denominator };
232     st->start_time        = 0;
233     st->duration          = avs->vi->num_frames;
234     st->nb_frames         = avs->vi->num_frames;
235
236     switch (avs->vi->pixel_type) {
237 #ifdef USING_AVISYNTH
238     case AVS_CS_YV24:
239         st->codec->pix_fmt = AV_PIX_FMT_YUV444P;
240         planar             = 1;
241         break;
242     case AVS_CS_YV16:
243         st->codec->pix_fmt = AV_PIX_FMT_YUV422P;
244         planar             = 1;
245         break;
246     case AVS_CS_YV411:
247         st->codec->pix_fmt = AV_PIX_FMT_YUV411P;
248         planar             = 1;
249         break;
250     case AVS_CS_Y8:
251         st->codec->pix_fmt = AV_PIX_FMT_GRAY8;
252         planar             = 2;
253         break;
254 #endif
255     case AVS_CS_BGR24:
256         st->codec->pix_fmt = AV_PIX_FMT_BGR24;
257         break;
258     case AVS_CS_BGR32:
259         st->codec->pix_fmt = AV_PIX_FMT_RGB32;
260         break;
261     case AVS_CS_YUY2:
262         st->codec->pix_fmt = AV_PIX_FMT_YUYV422;
263         break;
264     case AVS_CS_YV12:
265         st->codec->pix_fmt = AV_PIX_FMT_YUV420P;
266         planar             = 1;
267         break;
268     case AVS_CS_I420: // Is this even used anywhere?
269         st->codec->pix_fmt = AV_PIX_FMT_YUV420P;
270         planar             = 1;
271         break;
272     default:
273         av_log(s, AV_LOG_ERROR,
274                "unknown AviSynth colorspace %d\n", avs->vi->pixel_type);
275         avs->error = 1;
276         return AVERROR_UNKNOWN;
277     }
278
279     switch (planar) {
280     case 2: // Y8
281         avs->n_planes = 1;
282         avs->planes   = avs_planes_grey;
283         break;
284     case 1: // YUV
285         avs->n_planes = 3;
286         avs->planes   = avs_planes_yuv;
287         break;
288     default:
289         avs->n_planes = 1;
290         avs->planes   = avs_planes_packed;
291     }
292     return 0;
293 }
294
295 static int avisynth_create_stream_audio(AVFormatContext *s, AVStream *st)
296 {
297     AviSynthContext *avs = s->priv_data;
298
299     st->codec->codec_type  = AVMEDIA_TYPE_AUDIO;
300     st->codec->sample_rate = avs->vi->audio_samples_per_second;
301     st->codec->channels    = avs->vi->nchannels;
302     st->time_base          = (AVRational) { 1,
303                                             avs->vi->audio_samples_per_second };
304
305     switch (avs->vi->sample_type) {
306     case AVS_SAMPLE_INT8:
307         st->codec->codec_id = AV_CODEC_ID_PCM_U8;
308         break;
309     case AVS_SAMPLE_INT16:
310         st->codec->codec_id = AV_CODEC_ID_PCM_S16LE;
311         break;
312     case AVS_SAMPLE_INT24:
313         st->codec->codec_id = AV_CODEC_ID_PCM_S24LE;
314         break;
315     case AVS_SAMPLE_INT32:
316         st->codec->codec_id = AV_CODEC_ID_PCM_S32LE;
317         break;
318     case AVS_SAMPLE_FLOAT:
319         st->codec->codec_id = AV_CODEC_ID_PCM_F32LE;
320         break;
321     default:
322         av_log(s, AV_LOG_ERROR,
323                "unknown AviSynth sample type %d\n", avs->vi->sample_type);
324         avs->error = 1;
325         return AVERROR_UNKNOWN;
326     }
327     return 0;
328 }
329
330 static int avisynth_create_stream(AVFormatContext *s)
331 {
332     AviSynthContext *avs = s->priv_data;
333     AVStream *st;
334     int ret;
335     int id = 0;
336
337     if (avs_has_video(avs->vi)) {
338         st = avformat_new_stream(s, NULL);
339         if (!st)
340             return AVERROR_UNKNOWN;
341         st->id = id++;
342         if (ret = avisynth_create_stream_video(s, st))
343             return ret;
344     }
345     if (avs_has_audio(avs->vi)) {
346         st = avformat_new_stream(s, NULL);
347         if (!st)
348             return AVERROR_UNKNOWN;
349         st->id = id++;
350         if (ret = avisynth_create_stream_audio(s, st))
351             return ret;
352     }
353     return 0;
354 }
355
356 static int avisynth_open_file(AVFormatContext *s)
357 {
358     AviSynthContext *avs = s->priv_data;
359     AVS_Value arg, val;
360     int ret;
361 #ifdef USING_AVISYNTH
362     char filename_ansi[MAX_PATH * 4];
363     wchar_t filename_wc[MAX_PATH * 4];
364 #endif
365
366     if (ret = avisynth_context_create(s))
367         return ret;
368
369 #ifdef USING_AVISYNTH
370     /* Convert UTF-8 to ANSI code page */
371     MultiByteToWideChar(CP_UTF8, 0, s->filename, -1, filename_wc, MAX_PATH * 4);
372     WideCharToMultiByte(CP_THREAD_ACP, 0, filename_wc, -1, filename_ansi,
373                         MAX_PATH * 4, NULL, NULL);
374     arg = avs_new_value_string(filename_ansi);
375 #else
376     arg = avs_new_value_string(s->filename);
377 #endif
378     val = avs_library->avs_invoke(avs->env, "Import", arg, 0);
379     if (avs_is_error(val)) {
380         av_log(s, AV_LOG_ERROR, "%s\n", avs_as_error(val));
381         ret = AVERROR_UNKNOWN;
382         goto fail;
383     }
384     if (!avs_is_clip(val)) {
385         av_log(s, AV_LOG_ERROR, "AviSynth script did not return a clip\n");
386         ret = AVERROR_UNKNOWN;
387         goto fail;
388     }
389
390     avs->clip = avs_library->avs_take_clip(val, avs->env);
391     avs->vi   = avs_library->avs_get_video_info(avs->clip);
392
393     /* Release the AVS_Value as it will go out of scope. */
394     avs_library->avs_release_value(val);
395
396     if (ret = avisynth_create_stream(s))
397         goto fail;
398
399     return 0;
400
401 fail:
402     avisynth_context_destroy(avs);
403     return ret;
404 }
405
406 static void avisynth_next_stream(AVFormatContext *s, AVStream **st,
407                                  AVPacket *pkt, int *discard)
408 {
409     AviSynthContext *avs = s->priv_data;
410
411     pkt->stream_index = avs->curr_stream++;
412     avs->curr_stream %= s->nb_streams;
413
414     *st = s->streams[pkt->stream_index];
415     if ((*st)->discard == AVDISCARD_ALL)
416         *discard = 1;
417     else
418         *discard = 0;
419
420     return;
421 }
422
423 /* Copy AviSynth clip data into an AVPacket. */
424 static int avisynth_read_packet_video(AVFormatContext *s, AVPacket *pkt,
425                                       int discard)
426 {
427     AviSynthContext *avs = s->priv_data;
428     AVS_VideoFrame *frame;
429     unsigned char *dst_p;
430     const unsigned char *src_p;
431     int n, i, plane, rowsize, planeheight, pitch, bits;
432     const char *error;
433
434     if (avs->curr_frame >= avs->vi->num_frames)
435         return AVERROR_EOF;
436
437     /* This must happen even if the stream is discarded to prevent desync. */
438     n = avs->curr_frame++;
439     if (discard)
440         return 0;
441
442     pkt->pts      = n;
443     pkt->dts      = n;
444     pkt->duration = 1;
445
446 #ifdef USING_AVISYNTH
447     /* Define the bpp values for the new AviSynth 2.6 colorspaces.
448      * Since AvxSynth doesn't have these functions, special-case
449      * it in order to avoid implicit declaration errors. */
450
451     if (avs_is_yv24(avs->vi))
452         bits = 24;
453     else if (avs_is_yv16(avs->vi))
454         bits = 16;
455     else if (avs_is_yv411(avs->vi))
456         bits = 12;
457     else if (avs_is_y8(avs->vi))
458         bits = 8;
459     else
460 #endif
461         bits = avs_bits_per_pixel(avs->vi);
462
463     /* Without the cast to int64_t, calculation overflows at about 9k x 9k
464      * resolution. */
465     pkt->size = (((int64_t)avs->vi->width *
466                   (int64_t)avs->vi->height) * bits) / 8;
467     if (!pkt->size)
468         return AVERROR_UNKNOWN;
469     pkt->data = av_malloc(pkt->size);
470     if (!pkt->data)
471         return AVERROR(ENOMEM);
472
473     frame = avs_library->avs_get_frame(avs->clip, n);
474     error = avs_library->avs_clip_get_error(avs->clip);
475     if (error) {
476         av_log(s, AV_LOG_ERROR, "%s\n", error);
477         avs->error = 1;
478         av_freep(&pkt->data);
479         return AVERROR_UNKNOWN;
480     }
481
482     dst_p = pkt->data;
483     for (i = 0; i < avs->n_planes; i++) {
484         plane = avs->planes[i];
485         src_p = avs_get_read_ptr_p(frame, plane);
486         pitch = avs_get_pitch_p(frame, plane);
487
488 #ifdef USING_AVISYNTH
489         if (avs_library->avs_get_version(avs->clip) == 3) {
490             rowsize     = avs_get_row_size_p_25(frame, plane);
491             planeheight = avs_get_height_p_25(frame, plane);
492         } else {
493             rowsize     = avs_get_row_size_p(frame, plane);
494             planeheight = avs_get_height_p(frame, plane);
495         }
496 #else
497         rowsize     = avs_get_row_size_p(frame, plane);
498         planeheight = avs_get_height_p(frame, plane);
499 #endif
500
501         /* Flip RGB video. */
502         if (avs_is_rgb24(avs->vi) || avs_is_rgb(avs->vi)) {
503             src_p = src_p + (planeheight - 1) * pitch;
504             pitch = -pitch;
505         }
506
507         avs_library->avs_bit_blt(avs->env, dst_p, rowsize, src_p, pitch,
508                                  rowsize, planeheight);
509         dst_p += rowsize * planeheight;
510     }
511
512     avs_library->avs_release_video_frame(frame);
513     return 0;
514 }
515
516 static int avisynth_read_packet_audio(AVFormatContext *s, AVPacket *pkt,
517                                       int discard)
518 {
519     AviSynthContext *avs = s->priv_data;
520     AVRational fps, samplerate;
521     int samples;
522     int64_t n;
523     const char *error;
524
525     if (avs->curr_sample >= avs->vi->num_audio_samples)
526         return AVERROR_EOF;
527
528     fps.num        = avs->vi->fps_numerator;
529     fps.den        = avs->vi->fps_denominator;
530     samplerate.num = avs->vi->audio_samples_per_second;
531     samplerate.den = 1;
532
533     if (avs_has_video(avs->vi)) {
534         if (avs->curr_frame < avs->vi->num_frames)
535             samples = av_rescale_q(avs->curr_frame, samplerate, fps) -
536                       avs->curr_sample;
537         else
538             samples = av_rescale_q(1, samplerate, fps);
539     } else {
540         samples = 1000;
541     }
542
543     /* After seeking, audio may catch up with video. */
544     if (samples <= 0) {
545         pkt->size = 0;
546         pkt->data = NULL;
547         return 0;
548     }
549
550     if (avs->curr_sample + samples > avs->vi->num_audio_samples)
551         samples = avs->vi->num_audio_samples - avs->curr_sample;
552
553     /* This must happen even if the stream is discarded to prevent desync. */
554     n                 = avs->curr_sample;
555     avs->curr_sample += samples;
556     if (discard)
557         return 0;
558
559     pkt->pts      = n;
560     pkt->dts      = n;
561     pkt->duration = samples;
562
563     pkt->size = avs_bytes_per_channel_sample(avs->vi) *
564                 samples * avs->vi->nchannels;
565     if (!pkt->size)
566         return AVERROR_UNKNOWN;
567     pkt->data = av_malloc(pkt->size);
568     if (!pkt->data)
569         return AVERROR(ENOMEM);
570
571     avs_library->avs_get_audio(avs->clip, pkt->data, n, samples);
572     error = avs_library->avs_clip_get_error(avs->clip);
573     if (error) {
574         av_log(s, AV_LOG_ERROR, "%s\n", error);
575         avs->error = 1;
576         av_freep(&pkt->data);
577         return AVERROR_UNKNOWN;
578     }
579     return 0;
580 }
581
582 static av_cold int avisynth_read_header(AVFormatContext *s)
583 {
584     int ret;
585
586     // Calling library must implement a lock for thread-safe opens.
587     if (ret = avpriv_lock_avformat())
588         return ret;
589
590     if (ret = avisynth_open_file(s)) {
591         avpriv_unlock_avformat();
592         return ret;
593     }
594
595     avpriv_unlock_avformat();
596     return 0;
597 }
598
599 static int avisynth_read_packet(AVFormatContext *s, AVPacket *pkt)
600 {
601     AviSynthContext *avs = s->priv_data;
602     AVStream *st;
603     int discard = 0;
604     int ret;
605
606     if (avs->error)
607         return AVERROR_UNKNOWN;
608
609     pkt->destruct = av_destruct_packet;
610
611     /* If either stream reaches EOF, try to read the other one before
612      * giving up. */
613     avisynth_next_stream(s, &st, pkt, &discard);
614     if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
615         ret = avisynth_read_packet_video(s, pkt, discard);
616         if (ret == AVERROR_EOF && avs_has_audio(avs->vi)) {
617             avisynth_next_stream(s, &st, pkt, &discard);
618             return avisynth_read_packet_audio(s, pkt, discard);
619         }
620     } else {
621         ret = avisynth_read_packet_audio(s, pkt, discard);
622         if (ret == AVERROR_EOF && avs_has_video(avs->vi)) {
623             avisynth_next_stream(s, &st, pkt, &discard);
624             return avisynth_read_packet_video(s, pkt, discard);
625         }
626     }
627
628     return ret;
629 }
630
631 static av_cold int avisynth_read_close(AVFormatContext *s)
632 {
633     if (avpriv_lock_avformat())
634         return AVERROR_UNKNOWN;
635
636     avisynth_context_destroy(s->priv_data);
637     avpriv_unlock_avformat();
638     return 0;
639 }
640
641 static int avisynth_read_seek(AVFormatContext *s, int stream_index,
642                               int64_t timestamp, int flags)
643 {
644     AviSynthContext *avs = s->priv_data;
645     AVStream *st;
646     AVRational fps, samplerate;
647
648     if (avs->error)
649         return AVERROR_UNKNOWN;
650
651     fps        = (AVRational) { avs->vi->fps_numerator,
652                                 avs->vi->fps_denominator };
653     samplerate = (AVRational) { avs->vi->audio_samples_per_second, 1 };
654
655     st = s->streams[stream_index];
656     if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
657         /* AviSynth frame counts are signed int. */
658         if ((timestamp >= avs->vi->num_frames) ||
659             (timestamp > INT_MAX)              ||
660             (timestamp < 0))
661             return AVERROR_EOF;
662         avs->curr_frame = timestamp;
663         if (avs_has_audio(avs->vi))
664             avs->curr_sample = av_rescale_q(timestamp, samplerate, fps);
665     } else {
666         if ((timestamp >= avs->vi->num_audio_samples) || (timestamp < 0))
667             return AVERROR_EOF;
668         /* Force frame granularity for seeking. */
669         if (avs_has_video(avs->vi)) {
670             avs->curr_frame  = av_rescale_q(timestamp, fps, samplerate);
671             avs->curr_sample = av_rescale_q(avs->curr_frame, samplerate, fps);
672         } else {
673             avs->curr_sample = timestamp;
674         }
675     }
676
677     return 0;
678 }
679
680 AVInputFormat ff_avisynth_demuxer = {
681     .name           = "avisynth",
682     .long_name      = NULL_IF_CONFIG_SMALL("AviSynth script"),
683     .priv_data_size = sizeof(AviSynthContext),
684     .read_header    = avisynth_read_header,
685     .read_packet    = avisynth_read_packet,
686     .read_close     = avisynth_read_close,
687     .read_seek      = avisynth_read_seek,
688     .extensions     = "avs",
689 };