]> git.sesse.net Git - vlc/blob - modules/codec/avcodec/video.c
avcodec: move xlib check to vaapi.c
[vlc] / modules / codec / avcodec / video.c
1 /*****************************************************************************
2  * video.c: video decoder using the libavcodec library
3  *****************************************************************************
4  * Copyright (C) 1999-2001 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Gildas Bazin <gbazin@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #if defined(HAVE_LIBAVCODEC_AVCODEC_H) && defined(HAVE_AVCODEC_DXVA2)
33 # if _WIN32_WINNT < 0x600
34 /* dxva2 needs Vista support */
35 #  undef _WIN32_WINNT
36 #  define _WIN32_WINNT 0x600
37 # endif
38 #endif
39
40 #include <vlc_common.h>
41 #include <vlc_codec.h>
42 #include <vlc_avcodec.h>
43 #include <vlc_cpu.h>
44 #include <assert.h>
45
46 #include <libavcodec/avcodec.h>
47 #include <libavutil/mem.h>
48 #ifdef HAVE_AVCODEC_VAAPI
49 #    include <libavcodec/vaapi.h>
50 #endif
51 #ifdef HAVE_AVCODEC_DXVA2
52 #    include <libavcodec/dxva2.h>
53 #endif
54 #ifdef HAVE_AVCODEC_VDA
55 #    include <libavcodec/vda.h>
56 #endif
57
58 #include "avcodec.h"
59 #include "va.h"
60 #if defined(HAVE_AVCODEC_VAAPI) || defined(HAVE_AVCODEC_DXVA2) || defined(HAVE_AVCODEC_VDA)
61 #   define HAVE_AVCODEC_VA
62 #   include <libavutil/pixdesc.h>
63 #endif
64
65 /*****************************************************************************
66  * decoder_sys_t : decoder descriptor
67  *****************************************************************************/
68 struct decoder_sys_t
69 {
70     AVCODEC_COMMON_MEMBERS
71
72     /* Video decoder specific part */
73     mtime_t i_pts;
74
75     AVFrame          *p_ff_pic;
76
77     /* for frame skipping algo */
78     bool b_hurry_up;
79     enum AVDiscard i_skip_frame;
80     enum AVDiscard i_skip_idct;
81
82     /* how many decoded frames are late */
83     int     i_late_frames;
84     mtime_t i_late_frames_start;
85
86     /* for direct rendering */
87     bool b_direct_rendering;
88     int  i_direct_rendering_used;
89
90     bool b_has_b_frames;
91
92     /* Hack to force display of still pictures */
93     bool b_first_frame;
94
95
96     /* */
97 #if LIBAVCODEC_VERSION_MAJOR < 54
98     AVPaletteControl palette;
99 #else
100 # warning FIXME
101 #endif
102
103     /* */
104     bool b_flush;
105
106     /* VA API */
107     vlc_va_t *p_va;
108
109     vlc_sem_t sem_mt;
110 };
111
112 #ifdef HAVE_AVCODEC_MT
113 #   define wait_mt(s) vlc_sem_wait( &s->sem_mt )
114 #   define post_mt(s) vlc_sem_post( &s->sem_mt )
115 #else
116 #   define wait_mt(s)
117 #   define post_mt(s)
118 #endif
119
120 /*****************************************************************************
121  * Local prototypes
122  *****************************************************************************/
123 static void ffmpeg_InitCodec      ( decoder_t * );
124 static void ffmpeg_CopyPicture    ( decoder_t *, picture_t *, AVFrame * );
125 static int  ffmpeg_GetFrameBuf    ( struct AVCodecContext *, AVFrame * );
126 static int  ffmpeg_ReGetFrameBuf( struct AVCodecContext *, AVFrame * );
127 static void ffmpeg_ReleaseFrameBuf( struct AVCodecContext *, AVFrame * );
128
129 #ifdef HAVE_AVCODEC_VA
130 static enum PixelFormat ffmpeg_GetFormat( AVCodecContext *,
131                                           const enum PixelFormat * );
132 #endif
133
134 static uint32_t ffmpeg_CodecTag( vlc_fourcc_t fcc )
135 {
136     uint8_t *p = (uint8_t*)&fcc;
137     return p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24);
138 }
139
140 /*****************************************************************************
141  * Local Functions
142  *****************************************************************************/
143
144 /* Returns a new picture buffer */
145 static inline picture_t *ffmpeg_NewPictBuf( decoder_t *p_dec,
146                                             AVCodecContext *p_context )
147 {
148     decoder_sys_t *p_sys = p_dec->p_sys;
149
150     p_dec->fmt_out.video.i_width = p_context->width;
151     p_dec->fmt_out.video.i_height = p_context->height;
152
153     if( !p_context->width || !p_context->height )
154     {
155         return NULL; /* invalid display size */
156     }
157
158     if( !p_sys->p_va && GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) )
159     {
160         /* we are doomed, but not really, because most codecs set their pix_fmt
161          * much later
162          * FIXME does it make sense here ? */
163         p_dec->fmt_out.video.i_chroma = VLC_CODEC_I420;
164     }
165     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
166
167     /* If an aspect-ratio was specified in the input format then force it */
168     if( p_dec->fmt_in.video.i_sar_num > 0 && p_dec->fmt_in.video.i_sar_den > 0 )
169     {
170         p_dec->fmt_out.video.i_sar_num = p_dec->fmt_in.video.i_sar_num;
171         p_dec->fmt_out.video.i_sar_den = p_dec->fmt_in.video.i_sar_den;
172     }
173     else
174     {
175         p_dec->fmt_out.video.i_sar_num = p_context->sample_aspect_ratio.num;
176         p_dec->fmt_out.video.i_sar_den = p_context->sample_aspect_ratio.den;
177
178         if( !p_dec->fmt_out.video.i_sar_num || !p_dec->fmt_out.video.i_sar_den )
179         {
180             p_dec->fmt_out.video.i_sar_num = 1;
181             p_dec->fmt_out.video.i_sar_den = 1;
182         }
183     }
184
185     if( p_dec->fmt_in.video.i_frame_rate > 0 &&
186         p_dec->fmt_in.video.i_frame_rate_base > 0 )
187     {
188         p_dec->fmt_out.video.i_frame_rate =
189             p_dec->fmt_in.video.i_frame_rate;
190         p_dec->fmt_out.video.i_frame_rate_base =
191             p_dec->fmt_in.video.i_frame_rate_base;
192     }
193     else if( p_context->time_base.num > 0 && p_context->time_base.den > 0 )
194     {
195         p_dec->fmt_out.video.i_frame_rate = p_context->time_base.den;
196         p_dec->fmt_out.video.i_frame_rate_base = p_context->time_base.num;
197     }
198
199     return decoder_NewPicture( p_dec );
200 }
201
202 /*****************************************************************************
203  * InitVideo: initialize the video decoder
204  *****************************************************************************
205  * the ffmpeg codec will be opened, some memory allocated. The vout is not yet
206  * opened (done after the first decoded frame).
207  *****************************************************************************/
208 int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context,
209                       AVCodec *p_codec, int i_codec_id, const char *psz_namecodec )
210 {
211     decoder_sys_t *p_sys;
212     int i_val;
213
214     /* Allocate the memory needed to store the decoder's structure */
215     if( ( p_dec->p_sys = p_sys = calloc( 1, sizeof(decoder_sys_t) ) ) == NULL )
216         return VLC_ENOMEM;
217
218     p_codec->type = AVMEDIA_TYPE_VIDEO;
219     p_context->codec_type = AVMEDIA_TYPE_VIDEO;
220     p_context->codec_id = i_codec_id;
221     p_sys->p_context = p_context;
222     p_sys->p_codec = p_codec;
223     p_sys->i_codec_id = i_codec_id;
224     p_sys->psz_namecodec = psz_namecodec;
225     p_sys->p_ff_pic = avcodec_alloc_frame();
226     p_sys->b_delayed_open = true;
227     p_sys->p_va = NULL;
228     vlc_sem_init( &p_sys->sem_mt, 0 );
229
230     /* ***** Fill p_context with init values ***** */
231     p_sys->p_context->codec_tag = ffmpeg_CodecTag( p_dec->fmt_in.i_original_fourcc ?: p_dec->fmt_in.i_codec );
232
233     /*  ***** Get configuration of ffmpeg plugin ***** */
234     p_sys->p_context->workaround_bugs =
235         var_InheritInteger( p_dec, "avcodec-workaround-bugs" );
236 #if LIBAVCODEC_VERSION_MAJOR < 54
237     p_sys->p_context->error_recognition =
238 #else
239     p_sys->p_context->err_recognition =
240 #endif
241         var_InheritInteger( p_dec, "avcodec-error-resilience" );
242
243     if( var_CreateGetBool( p_dec, "grayscale" ) )
244         p_sys->p_context->flags |= CODEC_FLAG_GRAY;
245
246     i_val = var_CreateGetInteger( p_dec, "avcodec-vismv" );
247     if( i_val ) p_sys->p_context->debug_mv = i_val;
248
249     i_val = var_CreateGetInteger( p_dec, "avcodec-lowres" );
250     if( i_val > 0 && i_val <= 2 ) p_sys->p_context->lowres = i_val;
251
252     i_val = var_CreateGetInteger( p_dec, "avcodec-skiploopfilter" );
253     if( i_val >= 4 ) p_sys->p_context->skip_loop_filter = AVDISCARD_ALL;
254     else if( i_val == 3 ) p_sys->p_context->skip_loop_filter = AVDISCARD_NONKEY;
255     else if( i_val == 2 ) p_sys->p_context->skip_loop_filter = AVDISCARD_BIDIR;
256     else if( i_val == 1 ) p_sys->p_context->skip_loop_filter = AVDISCARD_NONREF;
257
258     if( var_CreateGetBool( p_dec, "avcodec-fast" ) )
259         p_sys->p_context->flags2 |= CODEC_FLAG2_FAST;
260
261     /* ***** libavcodec frame skipping ***** */
262     p_sys->b_hurry_up = var_CreateGetBool( p_dec, "avcodec-hurry-up" );
263
264     switch( var_CreateGetInteger( p_dec, "avcodec-skip-frame" ) )
265     {
266         case -1:
267             p_sys->p_context->skip_frame = AVDISCARD_NONE;
268             break;
269         case 0:
270             p_sys->p_context->skip_frame = AVDISCARD_DEFAULT;
271             break;
272         case 1:
273             p_sys->p_context->skip_frame = AVDISCARD_NONREF;
274             break;
275         case 2:
276             p_sys->p_context->skip_frame = AVDISCARD_NONKEY;
277             break;
278         case 3:
279             p_sys->p_context->skip_frame = AVDISCARD_ALL;
280             break;
281         default:
282             p_sys->p_context->skip_frame = AVDISCARD_NONE;
283             break;
284     }
285     p_sys->i_skip_frame = p_sys->p_context->skip_frame;
286
287     switch( var_CreateGetInteger( p_dec, "avcodec-skip-idct" ) )
288     {
289         case -1:
290             p_sys->p_context->skip_idct = AVDISCARD_NONE;
291             break;
292         case 0:
293             p_sys->p_context->skip_idct = AVDISCARD_DEFAULT;
294             break;
295         case 1:
296             p_sys->p_context->skip_idct = AVDISCARD_NONREF;
297             break;
298         case 2:
299             p_sys->p_context->skip_idct = AVDISCARD_NONKEY;
300             break;
301         case 3:
302             p_sys->p_context->skip_idct = AVDISCARD_ALL;
303             break;
304         default:
305             p_sys->p_context->skip_idct = AVDISCARD_NONE;
306             break;
307     }
308     p_sys->i_skip_idct = p_sys->p_context->skip_idct;
309
310     /* ***** libavcodec direct rendering ***** */
311     p_sys->b_direct_rendering = false;
312     p_sys->i_direct_rendering_used = -1;
313     if( var_CreateGetBool( p_dec, "avcodec-dr" ) &&
314        (p_sys->p_codec->capabilities & CODEC_CAP_DR1) &&
315         /* No idea why ... but this fixes flickering on some TSCC streams */
316         p_sys->i_codec_id != CODEC_ID_TSCC && p_sys->i_codec_id != CODEC_ID_CSCD &&
317         p_sys->i_codec_id != CODEC_ID_CINEPAK &&
318 #if (LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 52, 68, 2 ) ) && (LIBAVCODEC_VERSION_INT < AV_VERSION_INT( 52, 100, 1 ) )
319         /* avcodec native vp8 decode doesn't handle EMU_EDGE flag, and I
320            don't have idea howto implement fallback to libvpx decoder */
321         p_sys->i_codec_id != CODEC_ID_VP8 &&
322 #endif
323         !p_sys->p_context->debug_mv )
324     {
325         /* Some codecs set pix_fmt only after the 1st frame has been decoded,
326          * so we need to do another check in ffmpeg_GetFrameBuf() */
327         p_sys->b_direct_rendering = true;
328     }
329
330     /* libavcodec doesn't properly release old pictures when frames are skipped */
331     //if( p_sys->b_hurry_up ) p_sys->b_direct_rendering = false;
332     if( p_sys->b_direct_rendering )
333     {
334         msg_Dbg( p_dec, "trying to use direct rendering" );
335         p_sys->p_context->flags |= CODEC_FLAG_EMU_EDGE;
336     }
337     else
338     {
339         msg_Dbg( p_dec, "direct rendering is disabled" );
340     }
341
342     /* Always use our get_buffer wrapper so we can calculate the
343      * PTS correctly */
344     p_sys->p_context->get_buffer = ffmpeg_GetFrameBuf;
345     p_sys->p_context->reget_buffer = ffmpeg_ReGetFrameBuf;
346     p_sys->p_context->release_buffer = ffmpeg_ReleaseFrameBuf;
347     p_sys->p_context->opaque = p_dec;
348
349 #ifdef HAVE_AVCODEC_MT
350     int i_thread_count = var_InheritInteger( p_dec, "avcodec-threads" );
351     if( i_thread_count <= 0 )
352     {
353         i_thread_count = vlc_GetCPUCount();
354         if( i_thread_count > 1 )
355             i_thread_count++;
356
357         //FIXME: take in count the decoding time
358         i_thread_count = __MIN( i_thread_count, 4 );
359     }
360     i_thread_count = __MIN( i_thread_count, 16 );
361     msg_Dbg( p_dec, "allowing %d thread(s) for decoding", i_thread_count );
362     p_sys->p_context->thread_count = i_thread_count;
363 #endif
364
365 #ifdef HAVE_AVCODEC_VA
366     const bool b_use_hw = var_CreateGetBool( p_dec, "avcodec-hw" );
367     if( b_use_hw &&
368         (i_codec_id == CODEC_ID_MPEG1VIDEO || i_codec_id == CODEC_ID_MPEG2VIDEO ||
369          i_codec_id == CODEC_ID_MPEG4 ||
370          i_codec_id == CODEC_ID_H264 ||
371          i_codec_id == CODEC_ID_VC1 || i_codec_id == CODEC_ID_WMV3) )
372     {
373 #ifdef HAVE_AVCODEC_MT
374         if( p_sys->p_context->thread_type & FF_THREAD_FRAME )
375         {
376             msg_Warn( p_dec, "threaded frame decoding is not compatible with libavcodec-hw, disabled" );
377             p_sys->p_context->thread_type &= ~FF_THREAD_FRAME;
378         }
379         if( ( p_sys->p_context->thread_type & FF_THREAD_SLICE ) &&
380             ( i_codec_id == CODEC_ID_MPEG1VIDEO || i_codec_id == CODEC_ID_MPEG2VIDEO ) )
381         {
382             msg_Warn( p_dec, "threaded slice decoding is not compatible with libavcodec-hw, disabled" );
383             p_sys->p_context->thread_type &= ~FF_THREAD_SLICE;
384         }
385 #endif
386         p_sys->p_context->get_format = ffmpeg_GetFormat;
387     }
388 #endif
389 #ifdef HAVE_AVCODEC_MT
390     if( p_sys->p_context->thread_type & FF_THREAD_FRAME )
391         p_dec->i_extra_picture_buffers = 2 * p_sys->p_context->thread_count;
392 #endif
393
394
395     /* ***** misc init ***** */
396     p_sys->i_pts = VLC_TS_INVALID;
397     p_sys->b_has_b_frames = false;
398     p_sys->b_first_frame = true;
399     p_sys->b_flush = false;
400     p_sys->i_late_frames = 0;
401
402     /* Set output properties */
403     p_dec->fmt_out.i_cat = VIDEO_ES;
404     if( GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) != VLC_SUCCESS )
405     {
406         /* we are doomed. but not really, because most codecs set their pix_fmt later on */
407         p_dec->fmt_out.i_codec = VLC_CODEC_I420;
408     }
409     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
410
411 #if LIBAVCODEC_VERSION_MAJOR < 54
412     /* Setup palette */
413     memset( &p_sys->palette, 0, sizeof(p_sys->palette) );
414     if( p_dec->fmt_in.video.p_palette )
415     {
416         p_sys->palette.palette_changed = 1;
417
418         for( int i = 0; i < __MIN( AVPALETTE_COUNT, p_dec->fmt_in.video.p_palette->i_entries ); i++ )
419         {
420             union {
421                 uint32_t u;
422                 uint8_t a[4];
423             } c;
424             c.a[0] = p_dec->fmt_in.video.p_palette->palette[i][0];
425             c.a[1] = p_dec->fmt_in.video.p_palette->palette[i][1];
426             c.a[2] = p_dec->fmt_in.video.p_palette->palette[i][2];
427             c.a[3] = p_dec->fmt_in.video.p_palette->palette[i][3];
428
429             p_sys->palette.palette[i] = c.u;
430         }
431         p_sys->p_context->palctrl = &p_sys->palette;
432
433         p_dec->fmt_out.video.p_palette = malloc( sizeof(video_palette_t) );
434         if( p_dec->fmt_out.video.p_palette )
435             *p_dec->fmt_out.video.p_palette = *p_dec->fmt_in.video.p_palette;
436     }
437     else if( p_sys->i_codec_id != CODEC_ID_MSVIDEO1 && p_sys->i_codec_id != CODEC_ID_CINEPAK )
438     {
439         p_sys->p_context->palctrl = &p_sys->palette;
440     }
441 #else
442 # warning FIXME
443 #endif
444
445     /* ***** init this codec with special data ***** */
446     ffmpeg_InitCodec( p_dec );
447
448     /* ***** Open the codec ***** */
449     if( ffmpeg_OpenCodec( p_dec ) < 0 )
450     {
451         msg_Err( p_dec, "cannot open codec (%s)", p_sys->psz_namecodec );
452         av_free( p_sys->p_ff_pic );
453         vlc_sem_destroy( &p_sys->sem_mt );
454         free( p_sys );
455         return VLC_EGENERIC;
456     }
457
458     return VLC_SUCCESS;
459 }
460
461 /*****************************************************************************
462  * DecodeVideo: Called to decode one or more frames
463  *****************************************************************************/
464 picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
465 {
466     decoder_sys_t *p_sys = p_dec->p_sys;
467     AVCodecContext *p_context = p_sys->p_context;
468     int b_drawpicture;
469     int b_null_size = false;
470     block_t *p_block;
471
472     if( !pp_block || !*pp_block )
473         return NULL;
474
475     if( !p_context->extradata_size && p_dec->fmt_in.i_extra )
476     {
477         ffmpeg_InitCodec( p_dec );
478         if( p_sys->b_delayed_open )
479         {
480             if( ffmpeg_OpenCodec( p_dec ) )
481                 msg_Err( p_dec, "cannot open codec (%s)", p_sys->psz_namecodec );
482         }
483     }
484
485     p_block = *pp_block;
486     if( p_sys->b_delayed_open )
487     {
488         block_Release( p_block );
489         return NULL;
490     }
491
492     if( p_block->i_flags & (BLOCK_FLAG_DISCONTINUITY|BLOCK_FLAG_CORRUPTED) )
493     {
494         p_sys->i_pts = VLC_TS_INVALID; /* To make sure we recover properly */
495
496         p_sys->i_late_frames = 0;
497
498         if( p_block->i_flags & BLOCK_FLAG_DISCONTINUITY )
499             avcodec_flush_buffers( p_context );
500
501         block_Release( p_block );
502         return NULL;
503     }
504
505     if( p_block->i_flags & BLOCK_FLAG_PREROLL )
506     {
507         /* Do not care about late frames when prerolling
508          * TODO avoid decoding of non reference frame
509          * (ie all B except for H264 where it depends only on nal_ref_idc) */
510         p_sys->i_late_frames = 0;
511     }
512
513     if( !p_dec->b_pace_control && (p_sys->i_late_frames > 0) &&
514         (mdate() - p_sys->i_late_frames_start > INT64_C(5000000)) )
515     {
516         if( p_sys->i_pts > VLC_TS_INVALID )
517         {
518             msg_Err( p_dec, "more than 5 seconds of late video -> "
519                      "dropping frame (computer too slow ?)" );
520             p_sys->i_pts = VLC_TS_INVALID; /* To make sure we recover properly */
521         }
522         block_Release( p_block );
523         p_sys->i_late_frames--;
524         return NULL;
525     }
526
527     /* A good idea could be to decode all I pictures and see for the other */
528     if( !p_dec->b_pace_control &&
529         p_sys->b_hurry_up &&
530         (p_sys->i_late_frames > 4) )
531     {
532         b_drawpicture = 0;
533         if( p_sys->i_late_frames < 12 )
534         {
535             p_context->skip_frame =
536                     (p_sys->i_skip_frame <= AVDISCARD_NONREF) ?
537                     AVDISCARD_NONREF : p_sys->i_skip_frame;
538         }
539         else
540         {
541             /* picture too late, won't decode
542              * but break picture until a new I, and for mpeg4 ...*/
543             p_sys->i_late_frames--; /* needed else it will never be decrease */
544             block_Release( p_block );
545             return NULL;
546         }
547     }
548     else
549     {
550         if( p_sys->b_hurry_up )
551             p_context->skip_frame = p_sys->i_skip_frame;
552         if( !(p_block->i_flags & BLOCK_FLAG_PREROLL) )
553             b_drawpicture = 1;
554         else
555             b_drawpicture = 0;
556     }
557
558     if( p_context->width <= 0 || p_context->height <= 0 )
559     {
560         if( p_sys->b_hurry_up )
561             p_context->skip_frame = p_sys->i_skip_frame;
562         b_null_size = true;
563     }
564     else if( !b_drawpicture )
565     {
566         /* It creates broken picture
567          * FIXME either our parser or ffmpeg is broken */
568 #if 0
569         if( p_sys->b_hurry_up )
570             p_context->skip_frame = __MAX( p_context->skip_frame,
571                                                   AVDISCARD_NONREF );
572 #endif
573     }
574
575     /*
576      * Do the actual decoding now */
577
578     /* Don't forget that libavcodec requires a little more bytes
579      * that the real frame size */
580     if( p_block->i_buffer > 0 )
581     {
582         p_sys->b_flush = ( p_block->i_flags & BLOCK_FLAG_END_OF_SEQUENCE ) != 0;
583
584         p_block = block_Realloc( p_block, 0,
585                             p_block->i_buffer + FF_INPUT_BUFFER_PADDING_SIZE );
586         if( !p_block )
587             return NULL;
588         p_block->i_buffer -= FF_INPUT_BUFFER_PADDING_SIZE;
589         *pp_block = p_block;
590         memset( p_block->p_buffer + p_block->i_buffer, 0,
591                 FF_INPUT_BUFFER_PADDING_SIZE );
592     }
593
594     while( p_block->i_buffer > 0 || p_sys->b_flush )
595     {
596         int i_used, b_gotpicture;
597         picture_t *p_pic;
598         AVPacket pkt;
599
600         /* Set the PTS/DTS in the context reordered_opaque field */
601         if( p_block->i_pts > VLC_TS_INVALID  )
602             p_context->reordered_opaque = (p_block->i_pts << 1) | 0;
603         else if( p_block->i_dts > VLC_TS_INVALID )
604             p_context->reordered_opaque = (p_block->i_dts << 1) | 1;
605         else
606             p_context->reordered_opaque = INT64_MIN;
607         p_sys->p_ff_pic->reordered_opaque = p_context->reordered_opaque;
608
609         /* Make sure we don't reuse the same timestamps twice */
610         p_block->i_pts =
611         p_block->i_dts = VLC_TS_INVALID;
612
613         post_mt( p_sys );
614
615         av_init_packet( &pkt );
616         pkt.data = p_block->p_buffer;
617         pkt.size = p_block->i_buffer;
618         i_used = avcodec_decode_video2( p_context, p_sys->p_ff_pic,
619                                        &b_gotpicture, &pkt );
620
621         if( b_null_size && !p_sys->b_flush &&
622             p_context->width > 0 && p_context->height > 0 )
623         {
624             /* Reparse it to not drop the I frame */
625             b_null_size = false;
626             if( p_sys->b_hurry_up )
627                 p_context->skip_frame = p_sys->i_skip_frame;
628             i_used = avcodec_decode_video2( p_context, p_sys->p_ff_pic,
629                                            &b_gotpicture, &pkt );
630         }
631         wait_mt( p_sys );
632
633         if( p_sys->b_flush )
634             p_sys->b_first_frame = true;
635
636         if( p_block->i_buffer <= 0 )
637             p_sys->b_flush = false;
638
639         if( i_used < 0 )
640         {
641             if( b_drawpicture )
642                 msg_Warn( p_dec, "cannot decode one frame (%zu bytes)",
643                           p_block->i_buffer );
644             block_Release( p_block );
645             return NULL;
646         }
647         else if( i_used > p_block->i_buffer ||
648                  p_context->thread_count > 1 )
649         {
650             i_used = p_block->i_buffer;
651         }
652
653         /* Consumed bytes */
654         p_block->i_buffer -= i_used;
655         p_block->p_buffer += i_used;
656
657         /* Nothing to display */
658         if( !b_gotpicture )
659         {
660             if( i_used == 0 ) break;
661             continue;
662         }
663
664         /* Sanity check (seems to be needed for some streams) */
665         if( p_sys->p_ff_pic->pict_type == AV_PICTURE_TYPE_B)
666         {
667             p_sys->b_has_b_frames = true;
668         }
669
670         /* Compute the PTS */
671         mtime_t i_pts = VLC_TS_INVALID;
672         if( p_sys->p_ff_pic->reordered_opaque != INT64_MIN )
673         {
674             mtime_t i_ts = p_sys->p_ff_pic->reordered_opaque >> 1;
675             bool    b_dts = p_sys->p_ff_pic->reordered_opaque & 1;
676             if( b_dts )
677             {
678                 if( !p_context->has_b_frames ||
679                     !p_sys->b_has_b_frames ||
680                     !p_sys->p_ff_pic->reference ||
681                     p_sys->i_pts <= VLC_TS_INVALID )
682                     i_pts = i_ts;
683
684                 /* Guess what ? The rules are different for Real Video :( */
685                 if( (p_dec->fmt_in.i_codec == VLC_CODEC_RV30 ||
686                      p_dec->fmt_in.i_codec == VLC_CODEC_RV40) &&
687                     p_sys->b_has_b_frames )
688                 {
689                     i_pts = VLC_TS_INVALID;
690                     if(p_sys->p_ff_pic->reference) i_pts = i_ts;
691                 }
692             }
693             else
694             {
695                 i_pts = i_ts;
696             }
697         }
698         if( i_pts <= VLC_TS_INVALID )
699             i_pts = p_sys->i_pts;
700
701         /* Interpolate the next PTS */
702         if( i_pts > VLC_TS_INVALID )
703             p_sys->i_pts = i_pts;
704         if( p_sys->i_pts > VLC_TS_INVALID )
705         {
706             /* interpolate the next PTS */
707             if( p_dec->fmt_in.video.i_frame_rate > 0 &&
708                 p_dec->fmt_in.video.i_frame_rate_base > 0 )
709             {
710                 p_sys->i_pts += INT64_C(1000000) *
711                     (2 + p_sys->p_ff_pic->repeat_pict) *
712                     p_dec->fmt_in.video.i_frame_rate_base /
713                     (2 * p_dec->fmt_in.video.i_frame_rate);
714             }
715             else if( p_context->time_base.den > 0 )
716             {
717                 int i_tick = p_context->ticks_per_frame;
718                 if( i_tick <= 0 )
719                     i_tick = 1;
720
721                 p_sys->i_pts += INT64_C(1000000) *
722                     (2 + p_sys->p_ff_pic->repeat_pict) *
723                     i_tick * p_context->time_base.num /
724                     (2 * p_context->time_base.den);
725             }
726         }
727
728         /* Update frame late count (except when doing preroll) */
729         mtime_t i_display_date = 0;
730         if( !(p_block->i_flags & BLOCK_FLAG_PREROLL) )
731             i_display_date = decoder_GetDisplayDate( p_dec, i_pts );
732
733         if( i_display_date > 0 && i_display_date <= mdate() )
734         {
735             p_sys->i_late_frames++;
736             if( p_sys->i_late_frames == 1 )
737                 p_sys->i_late_frames_start = mdate();
738         }
739         else
740         {
741             p_sys->i_late_frames = 0;
742         }
743
744         if( !b_drawpicture || ( !p_sys->p_va && !p_sys->p_ff_pic->linesize[0] ) )
745             continue;
746
747         if( !p_sys->p_ff_pic->opaque )
748         {
749             /* Get a new picture */
750             p_pic = ffmpeg_NewPictBuf( p_dec, p_context );
751             if( !p_pic )
752             {
753                 block_Release( p_block );
754                 return NULL;
755             }
756
757             /* Fill p_picture_t from AVVideoFrame and do chroma conversion
758              * if needed */
759             ffmpeg_CopyPicture( p_dec, p_pic, p_sys->p_ff_pic );
760         }
761         else
762         {
763             p_pic = (picture_t *)p_sys->p_ff_pic->opaque;
764             decoder_LinkPicture( p_dec, p_pic );
765         }
766
767         if( !p_dec->fmt_in.video.i_sar_num || !p_dec->fmt_in.video.i_sar_den )
768         {
769             /* Fetch again the aspect ratio in case it changed */
770             p_dec->fmt_out.video.i_sar_num
771                 = p_context->sample_aspect_ratio.num;
772             p_dec->fmt_out.video.i_sar_den
773                 = p_context->sample_aspect_ratio.den;
774
775             if( !p_dec->fmt_out.video.i_sar_num || !p_dec->fmt_out.video.i_sar_den )
776             {
777                 p_dec->fmt_out.video.i_sar_num = 1;
778                 p_dec->fmt_out.video.i_sar_den = 1;
779             }
780         }
781
782         /* Send decoded frame to vout */
783         if( i_pts > VLC_TS_INVALID)
784         {
785             p_pic->date = i_pts;
786
787             if( p_sys->b_first_frame )
788             {
789                 /* Hack to force display of still pictures */
790                 p_sys->b_first_frame = false;
791                 p_pic->b_force = true;
792             }
793
794             p_pic->i_nb_fields = 2 + p_sys->p_ff_pic->repeat_pict;
795             p_pic->b_progressive = !p_sys->p_ff_pic->interlaced_frame;
796             p_pic->b_top_field_first = p_sys->p_ff_pic->top_field_first;
797
798             p_pic->i_qstride = p_sys->p_ff_pic->qstride;
799             int i_mb_h = ( p_pic->format.i_height + 15 ) / 16;
800             p_pic->p_q = malloc( p_pic->i_qstride * i_mb_h );
801             memcpy( p_pic->p_q, p_sys->p_ff_pic->qscale_table,
802                     p_pic->i_qstride * i_mb_h );
803             switch( p_sys->p_ff_pic->qscale_type )
804             {
805                 case FF_QSCALE_TYPE_MPEG1:
806                     p_pic->i_qtype = QTYPE_MPEG1;
807                     break;
808                 case FF_QSCALE_TYPE_MPEG2:
809                     p_pic->i_qtype = QTYPE_MPEG2;
810                     break;
811                 case FF_QSCALE_TYPE_H264:
812                     p_pic->i_qtype = QTYPE_H264;
813                     break;
814             }
815
816             return p_pic;
817         }
818         else
819         {
820             decoder_DeletePicture( p_dec, p_pic );
821         }
822     }
823
824     block_Release( p_block );
825     return NULL;
826 }
827
828 /*****************************************************************************
829  * EndVideo: decoder destruction
830  *****************************************************************************
831  * This function is called when the thread ends after a successful
832  * initialization.
833  *****************************************************************************/
834 void EndVideoDec( decoder_t *p_dec )
835 {
836     decoder_sys_t *p_sys = p_dec->p_sys;
837
838     post_mt( p_sys );
839
840     /* do not flush buffers if codec hasn't been opened (theora/vorbis/VC1) */
841     if( p_sys->p_context->codec )
842         avcodec_flush_buffers( p_sys->p_context );
843
844     wait_mt( p_sys );
845
846     if( p_sys->p_ff_pic ) av_free( p_sys->p_ff_pic );
847
848     if( p_sys->p_va )
849     {
850         vlc_va_Delete( p_sys->p_va );
851         p_sys->p_va = NULL;
852     }
853     vlc_sem_destroy( &p_sys->sem_mt );
854 }
855
856 /*****************************************************************************
857  * ffmpeg_InitCodec: setup codec extra initialization data for ffmpeg
858  *****************************************************************************/
859 static void ffmpeg_InitCodec( decoder_t *p_dec )
860 {
861     decoder_sys_t *p_sys = p_dec->p_sys;
862     int i_size = p_dec->fmt_in.i_extra;
863
864     if( !i_size ) return;
865
866     if( p_sys->i_codec_id == CODEC_ID_SVQ3 )
867     {
868         uint8_t *p;
869
870         p_sys->p_context->extradata_size = i_size + 12;
871         p = p_sys->p_context->extradata  =
872             malloc( p_sys->p_context->extradata_size );
873         if( !p )
874             return;
875
876         memcpy( &p[0],  "SVQ3", 4 );
877         memset( &p[4], 0, 8 );
878         memcpy( &p[12], p_dec->fmt_in.p_extra, i_size );
879
880         /* Now remove all atoms before the SMI one */
881         if( p_sys->p_context->extradata_size > 0x5a &&
882             strncmp( (char*)&p[0x56], "SMI ", 4 ) )
883         {
884             uint8_t *psz = &p[0x52];
885
886             while( psz < &p[p_sys->p_context->extradata_size - 8] )
887             {
888                 int i_size = GetDWBE( psz );
889                 if( i_size <= 1 )
890                 {
891                     /* FIXME handle 1 as long size */
892                     break;
893                 }
894                 if( !strncmp( (char*)&psz[4], "SMI ", 4 ) )
895                 {
896                     memmove( &p[0x52], psz,
897                              &p[p_sys->p_context->extradata_size] - psz );
898                     break;
899                 }
900
901                 psz += i_size;
902             }
903         }
904     }
905     else
906     {
907         p_sys->p_context->extradata_size = i_size;
908         p_sys->p_context->extradata =
909             malloc( i_size + FF_INPUT_BUFFER_PADDING_SIZE );
910         if( p_sys->p_context->extradata )
911         {
912             memcpy( p_sys->p_context->extradata,
913                     p_dec->fmt_in.p_extra, i_size );
914             memset( &((uint8_t*)p_sys->p_context->extradata)[i_size],
915                     0, FF_INPUT_BUFFER_PADDING_SIZE );
916         }
917     }
918 }
919
920 /*****************************************************************************
921  * ffmpeg_CopyPicture: copy a picture from ffmpeg internal buffers to a
922  *                     picture_t structure (when not in direct rendering mode).
923  *****************************************************************************/
924 static void ffmpeg_CopyPicture( decoder_t *p_dec,
925                                 picture_t *p_pic, AVFrame *p_ff_pic )
926 {
927     decoder_sys_t *p_sys = p_dec->p_sys;
928
929     if( p_sys->p_va )
930     {
931         vlc_va_Extract( p_sys->p_va, p_pic, p_ff_pic );
932     }
933     else if( TestFfmpegChroma( p_sys->p_context->pix_fmt, -1 ) == VLC_SUCCESS )
934     {
935         int i_plane, i_size, i_line;
936         uint8_t *p_dst, *p_src;
937         int i_src_stride, i_dst_stride;
938
939         for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
940         {
941             p_src  = p_ff_pic->data[i_plane];
942             p_dst = p_pic->p[i_plane].p_pixels;
943             i_src_stride = p_ff_pic->linesize[i_plane];
944             i_dst_stride = p_pic->p[i_plane].i_pitch;
945
946             i_size = __MIN( i_src_stride, i_dst_stride );
947             for( i_line = 0; i_line < p_pic->p[i_plane].i_visible_lines;
948                  i_line++ )
949             {
950                 memcpy( p_dst, p_src, i_size );
951                 p_src += i_src_stride;
952                 p_dst += i_dst_stride;
953             }
954         }
955     }
956     else
957     {
958         msg_Err( p_dec, "don't know how to convert chroma %i",
959                  p_sys->p_context->pix_fmt );
960         p_dec->b_error = 1;
961     }
962 }
963
964 /*****************************************************************************
965  * ffmpeg_GetFrameBuf: callback used by ffmpeg to get a frame buffer.
966  *****************************************************************************
967  * It is used for direct rendering as well as to get the right PTS for each
968  * decoded picture (even in indirect rendering mode).
969  *****************************************************************************/
970 static int ffmpeg_GetFrameBuf( struct AVCodecContext *p_context,
971                                AVFrame *p_ff_pic )
972 {
973     decoder_t *p_dec = (decoder_t *)p_context->opaque;
974     decoder_sys_t *p_sys = p_dec->p_sys;
975     picture_t *p_pic;
976
977     /* */
978     p_ff_pic->reordered_opaque = p_context->reordered_opaque;
979     p_ff_pic->opaque = NULL;
980
981     if( p_sys->p_va )
982     {
983 #ifdef HAVE_AVCODEC_VA
984         /* hwaccel_context is not present in old ffmpeg version */
985         if( vlc_va_Setup( p_sys->p_va,
986                           &p_context->hwaccel_context, &p_dec->fmt_out.video.i_chroma,
987                           p_context->width, p_context->height ) )
988         {
989             msg_Err( p_dec, "vlc_va_Setup failed" );
990             return -1;
991         }
992 #else
993         assert(0);
994 #endif
995
996         /* */
997         p_ff_pic->type = FF_BUFFER_TYPE_USER;
998
999 #if LIBAVCODEC_VERSION_MAJOR < 54
1000         p_ff_pic->age = 256*256*256*64;
1001 #endif
1002
1003         if( vlc_va_Get( p_sys->p_va, p_ff_pic ) )
1004         {
1005             msg_Err( p_dec, "VaGrabSurface failed" );
1006             return -1;
1007         }
1008         return 0;
1009     }
1010     else if( !p_sys->b_direct_rendering )
1011     {
1012         /* Not much to do in indirect rendering mode. */
1013         return avcodec_default_get_buffer( p_context, p_ff_pic );
1014     }
1015
1016     wait_mt( p_sys );
1017     /* Some codecs set pix_fmt only after the 1st frame has been decoded,
1018      * so we need to check for direct rendering again. */
1019
1020     int i_width = p_context->width;
1021     int i_height = p_context->height;
1022     avcodec_align_dimensions( p_context, &i_width, &i_height );
1023
1024     if( GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) != VLC_SUCCESS ||
1025         p_context->pix_fmt == PIX_FMT_PAL8 )
1026         goto no_dr;
1027
1028     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
1029
1030     /* Get a new picture */
1031     p_pic = ffmpeg_NewPictBuf( p_dec, p_context );
1032     if( !p_pic )
1033         goto no_dr;
1034     bool b_compatible = true;
1035     if( p_pic->p[0].i_pitch / p_pic->p[0].i_pixel_pitch < i_width ||
1036         p_pic->p[0].i_lines < i_height )
1037         b_compatible = false;
1038     for( int i = 0; i < p_pic->i_planes && b_compatible; i++ )
1039     {
1040         unsigned i_align;
1041         switch( p_sys->i_codec_id )
1042         {
1043         case CODEC_ID_SVQ1:
1044         case CODEC_ID_VP5:
1045         case CODEC_ID_VP6:
1046         case CODEC_ID_VP6F:
1047         case CODEC_ID_VP6A:
1048             i_align = 16;
1049             break;
1050         default:
1051             i_align = i == 0 ? 16 : 8;
1052             break;
1053         }
1054         if( p_pic->p[i].i_pitch % i_align )
1055             b_compatible = false;
1056         if( (intptr_t)p_pic->p[i].p_pixels % i_align )
1057             b_compatible = false;
1058     }
1059     if( p_context->pix_fmt == PIX_FMT_YUV422P && b_compatible )
1060     {
1061         if( 2 * p_pic->p[1].i_pitch != p_pic->p[0].i_pitch ||
1062             2 * p_pic->p[2].i_pitch != p_pic->p[0].i_pitch )
1063             b_compatible = false;
1064     }
1065     if( !b_compatible )
1066     {
1067         decoder_DeletePicture( p_dec, p_pic );
1068         goto no_dr;
1069     }
1070
1071     if( p_sys->i_direct_rendering_used != 1 )
1072     {
1073         msg_Dbg( p_dec, "using direct rendering" );
1074         p_sys->i_direct_rendering_used = 1;
1075     }
1076
1077     p_context->draw_horiz_band = NULL;
1078
1079     p_ff_pic->opaque = (void*)p_pic;
1080     p_ff_pic->type = FF_BUFFER_TYPE_USER;
1081     p_ff_pic->data[0] = p_pic->p[0].p_pixels;
1082     p_ff_pic->data[1] = p_pic->p[1].p_pixels;
1083     p_ff_pic->data[2] = p_pic->p[2].p_pixels;
1084     p_ff_pic->data[3] = NULL; /* alpha channel but I'm not sure */
1085
1086     p_ff_pic->linesize[0] = p_pic->p[0].i_pitch;
1087     p_ff_pic->linesize[1] = p_pic->p[1].i_pitch;
1088     p_ff_pic->linesize[2] = p_pic->p[2].i_pitch;
1089     p_ff_pic->linesize[3] = 0;
1090
1091 #if LIBAVCODEC_VERSION_MAJOR < 54
1092     p_ff_pic->age = 256*256*256*64;
1093 #endif
1094
1095     post_mt( p_sys );
1096     return 0;
1097
1098 no_dr:
1099     if( p_sys->i_direct_rendering_used != 0 )
1100     {
1101         msg_Warn( p_dec, "disabling direct rendering" );
1102         p_sys->i_direct_rendering_used = 0;
1103     }
1104     post_mt( p_sys );
1105     return avcodec_default_get_buffer( p_context, p_ff_pic );
1106 }
1107 static int  ffmpeg_ReGetFrameBuf( struct AVCodecContext *p_context, AVFrame *p_ff_pic )
1108 {
1109     p_ff_pic->reordered_opaque = p_context->reordered_opaque;
1110
1111     /* We always use default reget function, it works perfectly fine */
1112     return avcodec_default_reget_buffer( p_context, p_ff_pic );
1113 }
1114
1115 static void ffmpeg_ReleaseFrameBuf( struct AVCodecContext *p_context,
1116                                     AVFrame *p_ff_pic )
1117 {
1118     decoder_t *p_dec = (decoder_t *)p_context->opaque;
1119     decoder_sys_t *p_sys = p_dec->p_sys;
1120
1121     if( p_sys->p_va )
1122     {
1123         vlc_va_Release( p_sys->p_va, p_ff_pic );
1124     }
1125     else if( !p_ff_pic->opaque )
1126     {
1127         /* We can end up here without the AVFrame being allocated by
1128          * avcodec_default_get_buffer() if VA is used and the frame is
1129          * released when the decoder is closed
1130          */
1131         if( p_ff_pic->type == FF_BUFFER_TYPE_INTERNAL )
1132             avcodec_default_release_buffer( p_context, p_ff_pic );
1133     }
1134     else
1135     {
1136         picture_t *p_pic = (picture_t*)p_ff_pic->opaque;
1137
1138         decoder_UnlinkPicture( p_dec, p_pic );
1139     }
1140     for( int i = 0; i < 4; i++ )
1141         p_ff_pic->data[i] = NULL;
1142 }
1143
1144 #ifdef HAVE_AVCODEC_VA
1145 static enum PixelFormat ffmpeg_GetFormat( AVCodecContext *p_context,
1146                                           const enum PixelFormat *pi_fmt )
1147 {
1148     decoder_t *p_dec = p_context->opaque;
1149     decoder_sys_t *p_sys = p_dec->p_sys;
1150
1151     if( p_sys->p_va )
1152     {
1153         vlc_va_Delete( p_sys->p_va );
1154         p_sys->p_va = NULL;
1155     }
1156
1157     /* Try too look for a supported hw acceleration */
1158     for( int i = 0; pi_fmt[i] != PIX_FMT_NONE; i++ )
1159     {
1160         const char *name = av_get_pix_fmt_name(pi_fmt[i]);
1161         msg_Dbg( p_dec, "Available decoder output format %d (%s)", pi_fmt[i],
1162                  name ? name : "unknown" );
1163
1164 #ifdef HAVE_AVCODEC_VAAPI
1165         /* Only VLD supported */
1166         if( pi_fmt[i] == PIX_FMT_VAAPI_VLD )
1167         {
1168             msg_Dbg( p_dec, "Trying VA API" );
1169             p_sys->p_va = vlc_va_NewVaapi( VLC_OBJECT(p_dec), p_sys->i_codec_id );
1170             if( !p_sys->p_va )
1171                 msg_Warn( p_dec, "Failed to open VA API" );
1172         }
1173 #endif
1174
1175 #ifdef HAVE_AVCODEC_DXVA2
1176         if( pi_fmt[i] == PIX_FMT_DXVA2_VLD )
1177         {
1178             msg_Dbg( p_dec, "Trying DXVA2" );
1179             p_sys->p_va = vlc_va_NewDxva2( VLC_OBJECT(p_dec), p_sys->i_codec_id );
1180             if( !p_sys->p_va )
1181                 msg_Warn( p_dec, "Failed to open DXVA2" );
1182         }
1183 #endif
1184
1185 #ifdef HAVE_AVCODEC_VDA
1186         if( pi_fmt[i] == PIX_FMT_VDA_VLD )
1187         {
1188             msg_Dbg( p_dec, "Trying VDA" );
1189             p_sys->p_va = vlc_va_NewVDA( VLC_OBJECT(p_dec), p_sys->i_codec_id, p_dec->fmt_in.p_extra, p_dec->fmt_in.i_extra );
1190             if( !p_sys->p_va )
1191                 msg_Warn( p_dec, "Failed to open VDA" );
1192         }
1193 #endif
1194
1195         if( p_sys->p_va &&
1196             p_context->width > 0 && p_context->height > 0 )
1197         {
1198             /* We try to call vlc_va_Setup when possible to detect errors when
1199              * possible (later is too late) */
1200             if( vlc_va_Setup( p_sys->p_va,
1201                               &p_context->hwaccel_context,
1202                               &p_dec->fmt_out.video.i_chroma,
1203                               p_context->width, p_context->height ) )
1204             {
1205                 msg_Err( p_dec, "vlc_va_Setup failed" );
1206                 vlc_va_Delete( p_sys->p_va );
1207                 p_sys->p_va = NULL;
1208             }
1209         }
1210
1211         if( p_sys->p_va )
1212         {
1213             if( p_sys->p_va->description )
1214                 msg_Info( p_dec, "Using %s for hardware decoding.", p_sys->p_va->description );
1215
1216             /* FIXME this will disabled direct rendering
1217              * even if a new pixel format is renegociated
1218              */
1219             p_sys->b_direct_rendering = false;
1220             p_context->draw_horiz_band = NULL;
1221             return pi_fmt[i];
1222         }
1223     }
1224
1225     /* Fallback to default behaviour */
1226     return avcodec_default_get_format( p_context, pi_fmt );
1227 }
1228 #endif
1229