nuv.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:31k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * nuv.c:
  3.  *****************************************************************************
  4.  * Copyright (C) 2005 the VideoLAN team
  5.  * $Id: c6a87b45ac6fea1580c9cd0af234c289b0c37bc9 $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *          Gertjan Van Droogenbroeck <gertjanvd _PLUS_ vlc _AT_ gmail _DOT_ com>
  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.  * Preamble
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include <vlc_plugin.h>
  32. #include <vlc_demux.h>
  33. /* TODO:
  34.  *  - test
  35.  */
  36. /*****************************************************************************
  37.  * Module descriptor
  38.  *****************************************************************************/
  39. static int  Open  ( vlc_object_t * );
  40. static void Close ( vlc_object_t * );
  41. vlc_module_begin ()
  42.     set_category( CAT_INPUT )
  43.     set_subcategory( SUBCAT_INPUT_DEMUX )
  44.     set_description( N_("Nuv demuxer") )
  45.     set_capability( "demux", 145 )
  46.     set_callbacks( Open, Close )
  47.     add_shortcut( "nuv" )
  48. vlc_module_end ()
  49. /*****************************************************************************
  50.  * Local prototypes
  51.  *****************************************************************************/
  52. static int Demux  ( demux_t * );
  53. static int Control( demux_t *, int, va_list );
  54. /* */
  55. typedef struct
  56. {
  57.     int64_t i_time;
  58.     int64_t i_offset;
  59. } demux_index_entry_t;
  60. typedef struct
  61. {
  62.     int i_idx;
  63.     int i_idx_max;
  64.     demux_index_entry_t *idx;
  65. } demux_index_t;
  66. static void demux_IndexInit( demux_index_t * );
  67. static void demux_IndexClean( demux_index_t * );
  68. static void demux_IndexAppend( demux_index_t *,
  69.                                int64_t i_time, int64_t i_offset );
  70. /* Convert a time into offset */
  71. static int64_t demux_IndexConvertTime( demux_index_t *, int64_t i_time );
  72. /* Find the nearest offset in the index */
  73. static int64_t demux_IndexFindOffset( demux_index_t *, int64_t i_offset );
  74. /* */
  75. typedef struct
  76. {
  77.     char id[12];       /* "NuppelVideo" or "MythTVVideo" */
  78.     char version[5];    /* "x.xx" */
  79.     int  i_width;
  80.     int  i_height;
  81.     int  i_width_desired;
  82.     int  i_height_desired;
  83.     char i_mode;            /* P progressive, I interlaced */
  84.     double  d_aspect;       /* 1.0 squared pixel */
  85.     double  d_fps;
  86.     int     i_video_blocks; /* 0 no video, -1 unknown */
  87.     int     i_audio_blocks;
  88.     int     i_text_blocks;
  89.     int     i_keyframe_distance;
  90. } header_t;
  91. #define NUV_FH_SIZE 12
  92. typedef struct
  93. {
  94.     char i_type;        /* A: audio, V: video, S: sync; T: test
  95.                            R: Seekpoint (string:RTjjjjjjjj)
  96.                            D: Extra data for codec
  97.                            X: extended data Q: seektable */
  98.     char i_compression; /* V: 0 uncompressed
  99.                               1 RTJpeg
  100.                               2 RTJpeg+lzo
  101.                               N black frame
  102.                               L copy last
  103.                            A: 0 uncompressed (44100 1-bits, 2ch)
  104.                               1 lzo
  105.                               2 layer 2
  106.                               3 layer 3
  107.                               F flac
  108.                               S shorten
  109.                               N null frame loudless
  110.                               L copy last
  111.                             S: B audio and vdeo sync point
  112.                                A audio sync info (timecode == effective
  113.                                     dsp frequency*100)
  114.                                V next video sync (timecode == next video
  115.                                     frame num)
  116.                                S audio,video,text correlation */
  117.     char i_keyframe;    /* 0 keyframe, else no no key frame */
  118.     uint8_t i_filters;  /* 0x01: gauss 5 pixel (8,2,2,2,2)/16
  119.                            0x02: gauss 5 pixel (8,1,1,1,1)/12
  120.                            0x04: cartoon filter */
  121.     int i_timecode;     /* ms */
  122.     int i_length;       /* V,A,T: length of following data
  123.                            S: length of packet correl */
  124. } frame_header_t;
  125. typedef struct
  126. {
  127.     int             i_version;
  128.     vlc_fourcc_t    i_video_fcc;
  129.     vlc_fourcc_t    i_audio_fcc;
  130.     int             i_audio_sample_rate;
  131.     int             i_audio_bits_per_sample;
  132.     int             i_audio_channels;
  133.     int             i_audio_compression_ratio;
  134.     int             i_audio_quality;
  135.     int             i_rtjpeg_quality;
  136.     int             i_rtjpeg_luma_filter;
  137.     int             i_rtjpeg_chroma_filter;
  138.     int             i_lavc_bitrate;
  139.     int             i_lavc_qmin;
  140.     int             i_lavc_qmax;
  141.     int             i_lavc_maxqdiff;
  142.     int64_t         i_seektable_offset;
  143.     int64_t         i_keyframe_adjust_offset;
  144. } extended_header_t;
  145. struct demux_sys_t
  146. {
  147.     header_t          hdr;
  148.     extended_header_t exh;
  149.     int64_t     i_pcr;
  150.     es_out_id_t *p_es_video;
  151.     int         i_extra_f;
  152.     uint8_t     *p_extra_f;
  153.     es_out_id_t *p_es_audio;
  154.     /* index */
  155.     demux_index_t idx;
  156.     bool b_index;
  157.     bool b_seekable;
  158.     /* frameheader buffer */
  159.     uint8_t fh_buffer[NUV_FH_SIZE];
  160.     int64_t i_total_frames;
  161.     int64_t i_total_length;
  162.     /* first frame position (used for calculating size without seektable) */
  163.     int i_first_frame_offset;
  164. };
  165. static int HeaderLoad( demux_t *, header_t *h );
  166. static int FrameHeaderLoad( demux_t *, frame_header_t *h );
  167. static int ExtendedHeaderLoad( demux_t *, extended_header_t *h );
  168. static int SeekTableLoad( demux_t *, demux_sys_t * );
  169. static int ControlSetPosition( demux_t *p_demux, int64_t i_pos, bool b_guess );
  170. /*****************************************************************************
  171.  * Open: initializes ES structures
  172.  *****************************************************************************/
  173. static int Open( vlc_object_t * p_this )
  174. {
  175.     demux_t     *p_demux = (demux_t*)p_this;
  176.     demux_sys_t *p_sys;
  177.     const uint8_t *p_peek;
  178.     frame_header_t fh;
  179.     bool  b_extended;
  180.     /* Check id */
  181.     if( stream_Peek( p_demux->s, &p_peek, 12 ) != 12 ||
  182.         ( strncmp( (char *)p_peek, "MythTVVideo", 11 ) &&
  183.           strncmp( (char *)p_peek, "NuppelVideo", 11 ) ) )
  184.         return VLC_EGENERIC;
  185.     p_sys = malloc( sizeof( demux_sys_t ) );
  186.     if( p_sys == NULL )
  187.         return VLC_ENOMEM;
  188.     memset( p_sys, 0, sizeof( demux_sys_t ) );
  189.     p_sys->p_es_video = NULL;
  190.     p_sys->p_es_audio = NULL;
  191.     p_sys->p_extra_f = NULL;
  192.     p_sys->i_pcr = -1;
  193.     p_sys->b_index = false;
  194.     p_sys->i_total_frames = -1;
  195.     p_sys->i_total_length = -1;
  196.     demux_IndexInit( &p_sys->idx );
  197.     p_demux->p_sys = p_sys;
  198.     /* Info about the stream */
  199.     stream_Control( p_demux->s, STREAM_CAN_SEEK, &p_sys->b_seekable );
  200. #if 0
  201.     if( p_sys->b_seekable )
  202.         msg_Dbg( p_demux, "stream is seekable" );
  203.     else
  204.         msg_Dbg( p_demux, "stream is NOT seekable" );
  205. #endif
  206.     if( HeaderLoad( p_demux, &p_sys->hdr ) )
  207.         goto error;
  208.     /* Load 'D' */
  209.     if( FrameHeaderLoad( p_demux, &fh ) || fh.i_type != 'D' )
  210.         goto error;
  211.     if( fh.i_length > 0 )
  212.     {
  213.         if( fh.i_compression == 'F' || fh.i_compression == 'R' )
  214.         {
  215.             /* ffmpeg extra data */
  216.             p_sys->i_extra_f = fh.i_length;
  217.             p_sys->p_extra_f = malloc( fh.i_length );
  218.             if( p_sys->p_extra_f == NULL || stream_Read( p_demux->s,
  219.                              p_sys->p_extra_f, fh.i_length ) != fh.i_length )
  220.                 goto error;
  221.         }
  222.         else
  223.         {
  224.             msg_Warn( p_demux, "unsupported 'D' frame (c=%c)", fh.i_compression );
  225.             if( stream_Read( p_demux->s, NULL, fh.i_length ) != fh.i_length )
  226.                 goto error;
  227.         }
  228.     }
  229.     /* Check and load extented */
  230.     if( stream_Peek( p_demux->s, &p_peek, 1 ) != 1 )
  231.         goto error;
  232.     if( p_peek[0] == 'X' )
  233.     {
  234.         b_extended = true;
  235.         if( FrameHeaderLoad( p_demux, &fh ) )
  236.             goto error;
  237.         if( fh.i_length != 512 )
  238.             goto error;
  239.         if( ExtendedHeaderLoad( p_demux, &p_sys->exh ) )
  240.             goto error;
  241.         if( !p_sys->b_seekable )
  242.             msg_Warn( p_demux, "stream is not seekable, skipping seektable" );
  243.         else if( SeekTableLoad( p_demux, p_sys ) )
  244.             goto error;
  245.     }
  246.     else
  247.     {
  248.         b_extended = false;
  249.         /* XXX: for now only file with extended chunk are supported
  250.          * why: because else we need to have support for rtjpeg+stupid nuv shit */
  251.         msg_Err( p_demux, "incomplete NUV support (upload samples)" );
  252.         goto error;
  253.     }
  254.     /* Create audio/video (will work only with extended header and audio=mp3 */
  255.     if( p_sys->hdr.i_video_blocks != 0 )
  256.     {
  257.         es_format_t fmt;
  258.         es_format_Init( &fmt, VIDEO_ES, p_sys->exh.i_video_fcc );
  259.         fmt.video.i_width = p_sys->hdr.i_width;
  260.         fmt.video.i_height = p_sys->hdr.i_height;
  261.         fmt.i_extra = p_sys->i_extra_f;
  262.         fmt.p_extra = p_sys->p_extra_f;
  263.         fmt.video.i_aspect = VOUT_ASPECT_FACTOR * p_sys->hdr.d_aspect;
  264.         p_sys->p_es_video = es_out_Add( p_demux->out, &fmt );
  265.     }
  266.     if( p_sys->hdr.i_audio_blocks != 0 )
  267.     {
  268.         es_format_t fmt;
  269.         es_format_Init( &fmt, AUDIO_ES, VLC_FOURCC('m','p','g','a') );
  270.         fmt.audio.i_rate = p_sys->exh.i_audio_sample_rate;
  271.         fmt.audio.i_bitspersample = p_sys->exh.i_audio_bits_per_sample;
  272.         p_sys->p_es_audio = es_out_Add( p_demux->out, &fmt );
  273.     }
  274.     if( p_sys->hdr.i_text_blocks != 0 )
  275.     {
  276.         msg_Warn( p_demux, "text not yet supported (upload samples)" );
  277.     }
  278.     p_sys->i_first_frame_offset = stream_Tell( p_demux->s );
  279.     /* Fill p_demux fields */
  280.     p_demux->pf_demux = Demux;
  281.     p_demux->pf_control = Control;
  282.     return VLC_SUCCESS;
  283. error:
  284.     msg_Warn( p_demux, "cannot load Nuv file" );
  285.     p_demux->p_sys = NULL;
  286.     free( p_sys );
  287.     return VLC_EGENERIC;
  288. }
  289. /*****************************************************************************
  290.  * Close: frees unused data
  291.  *****************************************************************************/
  292. static void Close( vlc_object_t * p_this )
  293. {
  294.     demux_t        *p_demux = (demux_t*)p_this;
  295.     demux_sys_t    *p_sys = p_demux->p_sys;
  296.     free( p_sys->p_extra_f );
  297.     demux_IndexClean( &p_sys->idx );
  298.     free( p_sys );
  299. }
  300. /*****************************************************************************
  301.  * Demux: reads and demuxes data packets
  302.  *****************************************************************************
  303.  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
  304.  *****************************************************************************/
  305. static int Demux( demux_t *p_demux )
  306. {
  307.     demux_sys_t *p_sys = p_demux->p_sys;
  308.     frame_header_t fh;
  309.     block_t *p_data;
  310.     for( ;; )
  311.     {
  312.         if( !vlc_object_alive (p_demux) )
  313.             return -1;
  314.         if( FrameHeaderLoad( p_demux, &fh ) )
  315.             return 0;
  316.         if( fh.i_type == 'A' || fh.i_type == 'V' )
  317.             break;
  318.         /* TODO add support for some block type */
  319.         if( fh.i_type != 'R' && fh.i_length > 0 )
  320.         {
  321.             if( stream_Read( p_demux->s, NULL, fh.i_length ) != fh.i_length )
  322.                 return -1;
  323.         }
  324.     }
  325.     /* */
  326.     if( ( p_data = stream_Block( p_demux->s, fh.i_length ) ) == NULL )
  327.         return 0;
  328.     p_data->i_dts = (int64_t)fh.i_timecode * 1000;
  329.     p_data->i_pts = (fh.i_type == 'V') ? 0 : p_data->i_dts;
  330.     /* only add keyframes to index */
  331.     if( !fh.i_keyframe && !p_sys->b_index )
  332.         demux_IndexAppend( &p_sys->idx, p_data->i_dts, stream_Tell(p_demux->s) - NUV_FH_SIZE );
  333.     /* */
  334.     if( p_data->i_dts > p_sys->i_pcr )
  335.     {
  336.         p_sys->i_pcr = p_data->i_dts;
  337.         es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_pcr );
  338.     }
  339.     if( fh.i_type == 'A' && p_sys->p_es_audio )
  340.     {
  341.         if( fh.i_compression == '3' )
  342.             es_out_Send( p_demux->out, p_sys->p_es_audio, p_data );
  343.         else
  344.         {
  345.             msg_Dbg( p_demux, "unsupported compression %c for audio (upload samples)", fh.i_compression );
  346.             block_Release( p_data );
  347.         }
  348.     }
  349.     else if( fh.i_type == 'V' && p_sys->p_es_video )
  350.     {
  351.         if( fh.i_compression >='0' && fh.i_compression <='3' )
  352.         {
  353.             /* for rtjpeg data, the header is also needed */
  354.             p_data = block_Realloc( p_data, NUV_FH_SIZE, fh.i_length );
  355.             memcpy( p_data->p_buffer, p_sys->fh_buffer, NUV_FH_SIZE );
  356.         }
  357.         /* 0,1,2,3 -> rtjpeg, >=4 mpeg4 */
  358.         if( fh.i_compression >= '0' )
  359.             es_out_Send( p_demux->out, p_sys->p_es_video, p_data );
  360.         else
  361.         {
  362.             msg_Dbg( p_demux, "unsupported compression %c for video (upload samples)", fh.i_compression );
  363.             block_Release( p_data );
  364.         }
  365.     }
  366.     else
  367.     {
  368.         block_Release( p_data );
  369.     }
  370.     return 1;
  371. }
  372. /*****************************************************************************
  373.  * Control:
  374.  *****************************************************************************/
  375. static int Control( demux_t *p_demux, int i_query, va_list args )
  376. {
  377.     demux_sys_t *p_sys  = p_demux->p_sys;
  378.     double   f, *pf;
  379.     int64_t i64, *pi64;
  380.     switch( i_query )
  381.     {
  382.         case DEMUX_GET_POSITION:
  383.             pf = (double*)va_arg( args, double * );
  384.             if( p_sys->i_total_length > 0 && p_sys->i_pcr >= 0 )
  385.             {
  386.                 *pf = (double)p_sys->i_pcr / (double)p_sys->i_total_length;
  387.             }
  388.             else
  389.             {
  390.                 i64 = stream_Size( p_demux->s );
  391.                 if( i64 > 0 )
  392.                     *pf = (double)stream_Tell( p_demux->s ) / (double)i64;
  393.                 else
  394.                     *pf = 0.0;
  395.             }
  396.             return VLC_SUCCESS;
  397.         case DEMUX_SET_POSITION:
  398.         {
  399.             int64_t i_pos;
  400.             f = (double)va_arg( args, double );
  401.             p_sys->i_pcr = -1;
  402.             /* first try to see if we can seek based on time (== GET_LENGTH works) */
  403.             if( p_sys->i_total_length > 0 && ( i_pos = demux_IndexConvertTime( &p_sys->idx, p_sys->i_total_length * f ) ) > 0 )
  404.                 return ControlSetPosition( p_demux, i_pos, false );
  405.             /* if not search based on total stream size */
  406.             else if( ( i_pos = demux_IndexFindOffset( &p_sys->idx, stream_Size( p_demux->s ) * f ) ) >= 0 )
  407.                 return ControlSetPosition( p_demux, i_pos, false );
  408.             else if( ( i_pos =  p_sys->i_first_frame_offset + ( stream_Size( p_demux->s ) - p_sys->i_first_frame_offset ) * f ) >= 0 )
  409.                 return ControlSetPosition( p_demux, i_pos, true );
  410.             else
  411.                 return VLC_EGENERIC;
  412.         }
  413.         case DEMUX_GET_TIME:
  414.             pi64 = (int64_t*)va_arg( args, int64_t * );
  415.             *pi64 = p_sys->i_pcr >= 0 ? p_sys->i_pcr : 0;
  416.             return VLC_SUCCESS;
  417.         case DEMUX_SET_TIME:
  418.         {
  419.             int64_t i_pos;
  420.             i64 = (int64_t)va_arg( args, int64_t );
  421.             p_sys->i_pcr = -1;
  422.             i_pos = demux_IndexConvertTime( &p_sys->idx, i64 );
  423.             if( i_pos < 0 )
  424.                 return VLC_EGENERIC;
  425.             else
  426.                 return ControlSetPosition( p_demux, i_pos, false );
  427.         }
  428.         case DEMUX_GET_LENGTH:
  429.             pi64 = (int64_t*)va_arg( args, int64_t * );
  430.             if( p_sys->i_total_length >= 0 )
  431.             {
  432.                 *pi64 = p_sys->i_total_length;
  433.                 return VLC_SUCCESS;
  434.             }
  435.             else if( stream_Tell( p_demux->s ) > p_sys->i_first_frame_offset )
  436.             {
  437.                 /* This should give an approximation of the total duration */
  438.                 *pi64 = (double)( stream_Size( p_demux->s ) - p_sys->i_first_frame_offset ) /
  439.                         (double)( stream_Tell( p_demux->s ) - p_sys->i_first_frame_offset )
  440.                         * (double)( p_sys->i_pcr >= 0 ? p_sys->i_pcr : 0 );
  441.                 return VLC_SUCCESS;
  442.             }
  443.             else
  444.                 return VLC_EGENERIC;
  445.         case DEMUX_GET_FPS:
  446.             pf = (double*)va_arg( args, double * );
  447.             *pf = p_sys->hdr.d_fps;
  448.             return VLC_SUCCESS;
  449.         case DEMUX_GET_META:
  450.         default:
  451.             return VLC_EGENERIC;
  452.     }
  453. }
  454. static int ControlSetPosition( demux_t *p_demux, int64_t i_pos, bool b_guess )
  455. {
  456.     demux_sys_t *p_sys  = p_demux->p_sys;
  457.     if( i_pos < 0 )
  458.         return VLC_EGENERIC;
  459.     /* if we can seek in the stream */
  460.     if( p_sys->b_seekable && !b_guess )
  461.     {
  462.         if( stream_Seek( p_demux->s, i_pos ) )
  463.             return VLC_EGENERIC;
  464.     }
  465.     else
  466.     {
  467.         /* forward seek */
  468.         if( i_pos > stream_Tell( p_demux->s ) )
  469.         {
  470.             msg_Dbg( p_demux, "unable to seek, skipping frames (slow)" );
  471.         }
  472.         else
  473.         {
  474.             msg_Warn( p_demux, "unable to seek, only forward seeking is possible" );
  475.             return VLC_EGENERIC;
  476.         }
  477.     }
  478.     while( vlc_object_alive (p_demux) )
  479.     {
  480.         frame_header_t fh;
  481.         int64_t i_tell;
  482.         if( ( i_tell = stream_Tell( p_demux->s ) ) >= i_pos )
  483.             break;
  484.         if( FrameHeaderLoad( p_demux, &fh ) )
  485.             return VLC_EGENERIC;
  486.         if( fh.i_type == 'A' || fh.i_type == 'V' )
  487.         {
  488.             if( !fh.i_keyframe && !p_sys->b_index )
  489.                 demux_IndexAppend( &p_sys->idx,(int64_t)fh.i_timecode*1000, i_tell );
  490.         }
  491.         if( fh.i_type != 'R' && fh.i_length > 0 )
  492.         {
  493.             if( stream_Read( p_demux->s, NULL, fh.i_length ) != fh.i_length )
  494.                 return VLC_EGENERIC;
  495.         }
  496.     }
  497.     return VLC_SUCCESS;
  498. }
  499. /*****************************************************************************
  500.  *
  501.  *****************************************************************************/
  502. static inline void GetDoubleLE( double *pd, void *src )
  503. {
  504.     /* FIXME works only if sizeof(double) == 8 */
  505. #ifdef WORDS_BIGENDIAN
  506.     uint8_t *p = (uint8_t*)pd, *q = (uint8_t*)src;
  507.     int i;
  508.     for( i = 0; i < 8; i++ )
  509.         p[i] = q[7-i];
  510. #else
  511.     memcpy( pd, src, 8 );
  512. #endif
  513. }
  514. /* HeaderLoad:
  515.  */
  516. static int HeaderLoad( demux_t *p_demux, header_t *h )
  517. {
  518.     uint8_t buffer[72];
  519.     if( stream_Read( p_demux->s, buffer, 72 ) != 72 )
  520.         return VLC_EGENERIC;
  521.     /* XXX: they are alignment to take care of (another broken format) */
  522.     memcpy( h->id,      &buffer[ 0], 12 );
  523.     memcpy( h->version, &buffer[12], 5 );
  524.     h->i_width = GetDWLE( &buffer[20] );
  525.     h->i_height = GetDWLE( &buffer[24] );
  526.     h->i_width_desired = GetDWLE( &buffer[28] );
  527.     h->i_height_desired = GetDWLE( &buffer[32] );
  528.     h->i_mode = buffer[36];
  529.     GetDoubleLE( &h->d_aspect, &buffer[40] );
  530.     GetDoubleLE( &h->d_fps, &buffer[48] );
  531.     h->i_video_blocks = GetDWLE( &buffer[56] );
  532.     h->i_audio_blocks = GetDWLE( &buffer[60] );
  533.     h->i_text_blocks = GetDWLE( &buffer[64] );
  534.     h->i_keyframe_distance = GetDWLE( &buffer[68] );
  535. #if 0
  536.     msg_Dbg( p_demux, "nuv: h=%s v=%s %dx%d a=%f fps=%f v=%d a=%d t=%d kfd=%d",
  537.              h->id, h->version, h->i_width, h->i_height, h->d_aspect,
  538.              h->d_fps, h->i_video_blocks, h->i_audio_blocks, h->i_text_blocks,
  539.              h->i_keyframe_distance );
  540. #endif
  541.     return VLC_SUCCESS;
  542. }
  543. /* FrameHeaderLoad:
  544.  */
  545. static int FrameHeaderLoad( demux_t *p_demux, frame_header_t *h )
  546. {
  547.     uint8_t* buffer = p_demux->p_sys->fh_buffer;
  548.     if( stream_Read( p_demux->s, buffer, 12 ) != 12 )
  549.         return VLC_EGENERIC;
  550.     h->i_type = buffer[0];
  551.     h->i_compression = buffer[1];
  552.     h->i_keyframe = buffer[2];
  553.     h->i_filters = buffer[3];
  554.     h->i_timecode = GetDWLE( &buffer[4] );
  555.     h->i_length = GetDWLE( &buffer[8] );
  556. #if 0
  557.     msg_Dbg( p_demux, "frame hdr: t=%c c=%c k=%d f=0x%x timecode=%d l=%d",
  558.              h->i_type,
  559.              h->i_compression ? h->i_compression : ' ',
  560.              h->i_keyframe ? h->i_keyframe : ' ',
  561.              h->i_filters,
  562.              h->i_timecode, h->i_length );
  563. #endif
  564.     return VLC_SUCCESS;
  565. }
  566. static int ExtendedHeaderLoad( demux_t *p_demux, extended_header_t *h )
  567. {
  568.     uint8_t buffer[512];
  569.     if( stream_Read( p_demux->s, buffer, 512 ) != 512 )
  570.         return VLC_EGENERIC;
  571.     h->i_version = GetDWLE( &buffer[0] );
  572.     h->i_video_fcc = VLC_FOURCC( buffer[4], buffer[5], buffer[6], buffer[7] );
  573.     h->i_audio_fcc = VLC_FOURCC( buffer[8], buffer[9], buffer[10], buffer[11] );
  574.     h->i_audio_sample_rate = GetDWLE( &buffer[12] );
  575.     h->i_audio_bits_per_sample = GetDWLE( &buffer[16] );
  576.     h->i_audio_channels = GetDWLE( &buffer[20] );
  577.     h->i_audio_compression_ratio = GetDWLE( &buffer[24] );
  578.     h->i_audio_quality = GetDWLE( &buffer[28] );
  579.     h->i_rtjpeg_quality = GetDWLE( &buffer[32] );
  580.     h->i_rtjpeg_luma_filter = GetDWLE( &buffer[36] );
  581.     h->i_rtjpeg_chroma_filter = GetDWLE( &buffer[40] );
  582.     h->i_lavc_bitrate = GetDWLE( &buffer[44] );
  583.     h->i_lavc_qmin = GetDWLE( &buffer[48] );
  584.     h->i_lavc_qmin = GetDWLE( &buffer[52] );
  585.     h->i_lavc_maxqdiff = GetDWLE( &buffer[56] );
  586.     h->i_seektable_offset = GetQWLE( &buffer[60] );
  587.     h->i_keyframe_adjust_offset= GetQWLE( &buffer[68] );
  588. #if 0
  589.     msg_Dbg( p_demux, "ex hdr: v=%d vffc=%4.4s afcc=%4.4s %dHz %dbits ach=%d acr=%d aq=%d"
  590.                       "rtjpeg q=%d lf=%d lc=%d lavc br=%d qmin=%d qmax=%d maxqdiff=%d seekableoff=%"PRIi64" keyfao=%"PRIi64,
  591.              h->i_version,
  592.              (char*)&h->i_video_fcc,
  593.              (char*)&h->i_audio_fcc, h->i_audio_sample_rate, h->i_audio_bits_per_sample, h->i_audio_channels,
  594.              h->i_audio_compression_ratio, h->i_audio_quality,
  595.              h->i_rtjpeg_quality, h->i_rtjpeg_luma_filter, h->i_rtjpeg_chroma_filter,
  596.              h->i_lavc_bitrate, h->i_lavc_qmin, h->i_lavc_qmax, h->i_lavc_maxqdiff,
  597.              h->i_seektable_offset, h->i_keyframe_adjust_offset );
  598. #endif
  599.     return VLC_SUCCESS;
  600. }
  601. /*
  602.     typedef struct
  603.     {
  604.       int64_t i_file_offset;
  605.       int32_t i_keyframe_number;
  606.     } seektable_entry_t;
  607.     typedef struct
  608.     {
  609.        int32_t i_adjust;
  610.        int32_t i_keyframe_number;
  611.     } kfatable_entry_t;
  612. */
  613. static int SeekTableLoad( demux_t *p_demux, demux_sys_t *p_sys )
  614. {
  615.     frame_header_t fh;
  616.     int64_t i_original_pos;
  617.     uint8_t* p_seek_table;
  618.     uint8_t* p_kfa_table;
  619.     int32_t i_seek_elements = 0, i_kfa_elements = 0, j;
  620.     int64_t i_time, i_offset;
  621.     int keyframe, last_keyframe = 0, frame = 0, kfa_entry_id = 0;
  622.     if( p_sys->exh.i_seektable_offset <= 0 )
  623.         return VLC_SUCCESS;
  624.     /* Save current position */
  625.     i_original_pos = stream_Tell( p_demux->s );
  626. #if 0
  627.     msg_Dbg( p_demux, "current offset %"PRIi64, i_original_pos );
  628.     msg_Dbg( p_demux, "seeking in stream to %"PRIi64, p_sys->exh.i_seektable_offset );
  629. #endif
  630.     if( stream_Seek( p_demux->s, p_sys->exh.i_seektable_offset ) )
  631.         return VLC_EGENERIC;
  632.     if( FrameHeaderLoad( p_demux, &fh ) )
  633.         return VLC_EGENERIC;
  634.     if( fh.i_type == 'Q' )
  635.     {
  636.         p_seek_table = malloc( fh.i_length );
  637.         if( p_seek_table == NULL )
  638.             return VLC_ENOMEM;
  639.         if( stream_Read( p_demux->s, p_seek_table, fh.i_length ) != fh.i_length )
  640.         {
  641.             free( p_seek_table );
  642.             return VLC_EGENERIC;
  643.         }
  644.         i_seek_elements = fh.i_length / 12;
  645.     }
  646.     else
  647.     {
  648.         msg_Warn( p_demux, "invalid seektable, frame type=%c", fh.i_type );
  649.         stream_Seek( p_demux->s, i_original_pos );
  650.         return VLC_EGENERIC;
  651.     }
  652.     /* Get keyframe adjust offsets */
  653.     if( p_sys->exh.i_keyframe_adjust_offset > 0 )
  654.     {
  655.         msg_Dbg( p_demux, "seeking in stream to %"PRIi64, p_sys->exh.i_keyframe_adjust_offset );
  656.         if( stream_Seek( p_demux->s, p_sys->exh.i_keyframe_adjust_offset ) )
  657.         {
  658.             free( p_seek_table );
  659.             return VLC_EGENERIC;
  660.         }
  661.         if( FrameHeaderLoad( p_demux, &fh ) )
  662.         {
  663.             free( p_seek_table );
  664.             return VLC_EGENERIC;
  665.         }
  666.         if( fh.i_type == 'K' && fh.i_length >= 8 )
  667.         {
  668.             p_kfa_table = malloc( fh.i_length );
  669.             if( p_kfa_table == NULL )
  670.             {
  671.                 free( p_seek_table );
  672.                 return VLC_ENOMEM;
  673.             }
  674.             if( stream_Read( p_demux->s, p_kfa_table, fh.i_length ) != fh.i_length )
  675.             {
  676.                 free( p_seek_table );
  677.                 free( p_kfa_table );
  678.                 return VLC_EGENERIC;
  679.             }
  680.             i_kfa_elements = fh.i_length / 8;
  681.         }
  682.     }
  683.     if( i_kfa_elements > 0 )
  684.         msg_Warn( p_demux, "untested keyframe adjust support, upload samples" );
  685.     for(j=0; j < i_seek_elements; j++)
  686.     {
  687. #if 0
  688.         uint8_t* p = p_seek_table + j * 12;
  689.         msg_Dbg( p_demux, "%x %x %x %x %x %x %x %x %x %x %x %x",
  690.         p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7], p[8], p[9], p[10], p[11]);
  691. #endif
  692.         keyframe = GetDWLE( p_seek_table + j * 12 + 8 );
  693.         frame += (keyframe - last_keyframe) * p_sys->hdr.i_keyframe_distance;
  694.         if( kfa_entry_id < i_kfa_elements && *(int32_t*)(p_kfa_table + kfa_entry_id * 12 + 4) == j )
  695.         {
  696.             frame -= *(int32_t*)(p_kfa_table + kfa_entry_id * 12);
  697.             msg_Dbg( p_demux, "corrected keyframe %d with current frame number %d (corrected with %d)",
  698.                         keyframe, frame, *(int32_t*)(p_kfa_table + kfa_entry_id * 12) );
  699.             kfa_entry_id++;
  700.         }
  701.         i_time = (double)( (int64_t)frame * 1000000 ) / p_sys->hdr.d_fps;
  702.         i_offset = GetQWLE( p_seek_table + j * 12 );
  703.         if( i_offset == 0 && i_time != 0 )
  704.             msg_Dbg( p_demux, "invalid file offset %d %"PRIi64, keyframe, i_offset );
  705.         else
  706.         {
  707.             demux_IndexAppend( &p_sys->idx, i_time , i_offset );
  708. #if 0
  709.             msg_Dbg( p_demux, "adding entry position %d %"PRIi64 " file offset %"PRIi64, keyframe, i_time, i_offset );
  710. #endif
  711.         }
  712.         last_keyframe = keyframe;
  713.     }
  714.     p_sys->i_total_frames = (int64_t)frame;
  715.     p_sys->b_index = true;
  716.     p_sys->i_total_length = p_sys->i_total_frames * 1000000 / p_sys->hdr.d_fps;
  717.     msg_Dbg( p_demux, "index table loaded (%d elements)", i_seek_elements );
  718.     if( i_kfa_elements )
  719.         free ( p_kfa_table );
  720.     free ( p_seek_table );
  721.     /* Restore stream position */
  722.     if( stream_Seek( p_demux->s, i_original_pos ) )
  723.         return VLC_EGENERIC;
  724.     return VLC_SUCCESS;
  725. }
  726. /*****************************************************************************/
  727. #define DEMUX_INDEX_SIZE_MAX (100000)
  728. static void demux_IndexInit( demux_index_t *p_idx )
  729. {
  730.     p_idx->i_idx = 0;
  731.     p_idx->i_idx_max = 0;
  732.     p_idx->idx = NULL;
  733. }
  734. static void demux_IndexClean( demux_index_t *p_idx )
  735. {
  736.     free( p_idx->idx );
  737.     p_idx->idx = NULL;
  738. }
  739. static void demux_IndexAppend( demux_index_t *p_idx,
  740.                                int64_t i_time, int64_t i_offset )
  741. {
  742.     /* Be sure to append new entry (we don't insert point) */
  743.     if( p_idx->i_idx > 0 && p_idx->idx[p_idx->i_idx-1].i_time >= i_time )
  744.         return;
  745.     /* */
  746.     if( p_idx->i_idx >= p_idx->i_idx_max )
  747.     {
  748.         if( p_idx->i_idx >= DEMUX_INDEX_SIZE_MAX )
  749.         {
  750.             /* Avoid too big index */
  751.             const int64_t i_length = p_idx->idx[p_idx->i_idx-1].i_time -
  752.                                                         p_idx->idx[0].i_time;
  753.             const int i_count = DEMUX_INDEX_SIZE_MAX/2;
  754.             int i, j;
  755.             /* We try to reduce the resolution of the index by a factor 2 */
  756.             for( i = 1, j = 1; i < p_idx->i_idx; i++ )
  757.             {
  758.                 if( p_idx->idx[i].i_time < j * i_length / i_count )
  759.                     continue;
  760.                 p_idx->idx[j++] = p_idx->idx[i];
  761.             }
  762.             p_idx->i_idx = j;
  763.             if( p_idx->i_idx > 3 * DEMUX_INDEX_SIZE_MAX / 4 )
  764.             {
  765.                 /* We haven't created enough space
  766.                  * (This method won't create a good index but work for sure) */
  767.                 for( i = 0; i < p_idx->i_idx/2; i++ )
  768.                     p_idx->idx[i] = p_idx->idx[2*i];
  769.                 p_idx->i_idx /= 2;
  770.             }
  771.         }
  772.         else
  773.         {
  774.             p_idx->i_idx_max += 1000;
  775.             p_idx->idx = realloc( p_idx->idx,
  776.                                   p_idx->i_idx_max*sizeof(demux_index_entry_t));
  777.         }
  778.     }
  779.     /* */
  780.     p_idx->idx[p_idx->i_idx].i_time = i_time;
  781.     p_idx->idx[p_idx->i_idx].i_offset = i_offset;
  782.     p_idx->i_idx++;
  783. }
  784. static int64_t demux_IndexConvertTime( demux_index_t *p_idx, int64_t i_time )
  785. {
  786.     int i_min = 0;
  787.     int i_max = p_idx->i_idx-1;
  788.     /* Empty index */
  789.     if( p_idx->i_idx <= 0 )
  790.         return -1;
  791.     /* Special border case */
  792.     if( i_time <= p_idx->idx[0].i_time )
  793.         return p_idx->idx[0].i_offset;
  794.     if( i_time >= p_idx->idx[i_max].i_time )
  795.         return p_idx->idx[i_max].i_offset;
  796.     /* Dicho */
  797.     for( ;; )
  798.     {
  799.         int i_med;
  800.         if( i_max - i_min <= 1 )
  801.             break;
  802.         i_med = (i_min+i_max)/2;
  803.         if( p_idx->idx[i_med].i_time < i_time )
  804.             i_min = i_med;
  805.         else if( p_idx->idx[i_med].i_time > i_time )
  806.             i_max = i_med;
  807.         else
  808.             return p_idx->idx[i_med].i_offset;
  809.     }
  810.     /* return nearest in time */
  811.     if( i_time - p_idx->idx[i_min].i_time < p_idx->idx[i_max].i_time - i_time )
  812.         return p_idx->idx[i_min].i_offset;
  813.     else
  814.         return p_idx->idx[i_max].i_offset;
  815. }
  816. static int64_t demux_IndexFindOffset( demux_index_t *p_idx, int64_t i_offset )
  817. {
  818.     int i_min = 0;
  819.     int i_max = p_idx->i_idx-1;
  820.     /* Empty index */
  821.     if( p_idx->i_idx <= 0 )
  822.         return -1;
  823.     /* Special border case */
  824.     if( i_offset <= p_idx->idx[0].i_offset )
  825.         return p_idx->idx[0].i_offset;
  826.     if( i_offset == p_idx->idx[i_max].i_offset )
  827.         return p_idx->idx[i_max].i_offset;
  828.     if( i_offset > p_idx->idx[i_max].i_offset )
  829.         return -1;
  830.     /* Dicho */
  831.     for( ;; )
  832.     {
  833.         int i_med;
  834.         if( i_max - i_min <= 1 )
  835.             break;
  836.         i_med = (i_min+i_max)/2;
  837.         if( p_idx->idx[i_med].i_offset < i_offset )
  838.             i_min = i_med;
  839.         else if( p_idx->idx[i_med].i_offset > i_offset )
  840.             i_max = i_med;
  841.         else
  842.             return p_idx->idx[i_med].i_offset;
  843.     }
  844.     /* return nearest */
  845.     if( i_offset - p_idx->idx[i_min].i_offset < p_idx->idx[i_max].i_offset - i_offset )
  846.         return p_idx->idx[i_min].i_offset;
  847.     else
  848.         return p_idx->idx[i_max].i_offset;
  849. }