theora.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:26k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * theora.c: theora decoder module making use of libtheora.
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2001 VideoLAN
  5.  * $Id: theora.c 8813 2004-09-26 20:17:50Z gbazin $
  6.  *
  7.  * Authors: Gildas Bazin <gbazin@videolan.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <vlc/vlc.h>
  27. #include <vlc/decoder.h>
  28. #include <vlc/input.h>
  29. #include <vlc/sout.h>
  30. #include <ogg/ogg.h>
  31. #include <theora/theora.h>
  32. /*****************************************************************************
  33.  * decoder_sys_t : theora decoder descriptor
  34.  *****************************************************************************/
  35. struct decoder_sys_t
  36. {
  37.     /* Module mode */
  38.     vlc_bool_t b_packetizer;
  39.     /*
  40.      * Input properties
  41.      */
  42.     int i_headers;
  43.     /*
  44.      * Theora properties
  45.      */
  46.     theora_info      ti;                        /* theora bitstream settings */
  47.     theora_comment   tc;                            /* theora comment header */
  48.     theora_state     td;                   /* theora bitstream user comments */
  49.     /*
  50.      * Common properties
  51.      */
  52.     mtime_t i_pts;
  53. };
  54. /*****************************************************************************
  55.  * Local prototypes
  56.  *****************************************************************************/
  57. static int  OpenDecoder   ( vlc_object_t * );
  58. static int  OpenPacketizer( vlc_object_t * );
  59. static void CloseDecoder  ( vlc_object_t * );
  60. static void *DecodeBlock  ( decoder_t *, block_t ** );
  61. static int  ProcessHeaders( decoder_t * );
  62. static void *ProcessPacket ( decoder_t *, ogg_packet *, block_t ** );
  63. static picture_t *DecodePacket( decoder_t *, ogg_packet * );
  64. static void ParseTheoraComments( decoder_t * );
  65. static void theora_CopyPicture( decoder_t *, picture_t *, yuv_buffer * );
  66. static int  OpenEncoder( vlc_object_t *p_this );
  67. static void CloseEncoder( vlc_object_t *p_this );
  68. static block_t *Encode( encoder_t *p_enc, picture_t *p_pict );
  69. /*****************************************************************************
  70.  * Module descriptor
  71.  *****************************************************************************/
  72. #define ENC_QUALITY_TEXT N_("Encoding quality")
  73. #define ENC_QUALITY_LONGTEXT N_( 
  74.   "Allows you to specify a quality between 1 (low) and 10 (high), instead " 
  75.   "of specifying a particular bitrate. This will produce a VBR stream." )
  76. vlc_module_begin();
  77.     set_description( _("Theora video decoder") );
  78.     set_capability( "decoder", 100 );
  79.     set_callbacks( OpenDecoder, CloseDecoder );
  80.     add_shortcut( "theora" );
  81.     add_submodule();
  82.     set_description( _("Theora video packetizer") );
  83.     set_capability( "packetizer", 100 );
  84.     set_callbacks( OpenPacketizer, CloseDecoder );
  85.     add_shortcut( "theora" );
  86.     add_submodule();
  87.     set_description( _("Theora video encoder") );
  88.     set_capability( "encoder", 100 );
  89.     set_callbacks( OpenEncoder, CloseEncoder );
  90.     add_shortcut( "theora" );
  91. #   define ENC_CFG_PREFIX "sout-theora-"
  92.     add_integer( ENC_CFG_PREFIX "quality", 2, NULL, ENC_QUALITY_TEXT,
  93.                  ENC_QUALITY_LONGTEXT, VLC_FALSE );
  94. vlc_module_end();
  95. static const char *ppsz_enc_options[] = {
  96.     "quality", NULL
  97. };
  98. /*****************************************************************************
  99.  * OpenDecoder: probe the decoder and return score
  100.  *****************************************************************************/
  101. static int OpenDecoder( vlc_object_t *p_this )
  102. {
  103.     decoder_t *p_dec = (decoder_t*)p_this;
  104.     decoder_sys_t *p_sys;
  105.     if( p_dec->fmt_in.i_codec != VLC_FOURCC('t','h','e','o') )
  106.     {
  107.         return VLC_EGENERIC;
  108.     }
  109.     /* Allocate the memory needed to store the decoder's structure */
  110.     if( ( p_dec->p_sys = p_sys =
  111.           (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
  112.     {
  113.         msg_Err( p_dec, "out of memory" );
  114.         return VLC_EGENERIC;
  115.     }
  116.     p_dec->p_sys->b_packetizer = VLC_FALSE;
  117.     p_sys->i_pts = 0;
  118.     /* Set output properties */
  119.     p_dec->fmt_out.i_cat = VIDEO_ES;
  120.     p_dec->fmt_out.i_codec = VLC_FOURCC('I','4','2','0');
  121.     /* Set callbacks */
  122.     p_dec->pf_decode_video = (picture_t *(*)(decoder_t *, block_t **))
  123.         DecodeBlock;
  124.     p_dec->pf_packetize    = (block_t *(*)(decoder_t *, block_t **))
  125.         DecodeBlock;
  126.     /* Init supporting Theora structures needed in header parsing */
  127.     theora_comment_init( &p_sys->tc );
  128.     theora_info_init( &p_sys->ti );
  129.     p_sys->i_headers = 0;
  130.     return VLC_SUCCESS;
  131. }
  132. static int OpenPacketizer( vlc_object_t *p_this )
  133. {
  134.     decoder_t *p_dec = (decoder_t*)p_this;
  135.     int i_ret = OpenDecoder( p_this );
  136.     if( i_ret == VLC_SUCCESS )
  137.     {
  138.         p_dec->p_sys->b_packetizer = VLC_TRUE;
  139.         p_dec->fmt_out.i_codec = VLC_FOURCC( 't', 'h', 'e', 'o' );
  140.     }
  141.     return i_ret;
  142. }
  143. /****************************************************************************
  144.  * DecodeBlock: the whole thing
  145.  ****************************************************************************
  146.  * This function must be fed with ogg packets.
  147.  ****************************************************************************/
  148. static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
  149. {
  150.     decoder_sys_t *p_sys = p_dec->p_sys;
  151.     block_t *p_block;
  152.     ogg_packet oggpacket;
  153.     if( !pp_block || !*pp_block ) return NULL;
  154.     p_block = *pp_block;
  155.     /* Block to Ogg packet */
  156.     oggpacket.packet = p_block->p_buffer;
  157.     oggpacket.bytes = p_block->i_buffer;
  158.     oggpacket.granulepos = p_block->i_dts;
  159.     oggpacket.b_o_s = 0;
  160.     oggpacket.e_o_s = 0;
  161.     oggpacket.packetno = 0;
  162.     /* Check for headers */
  163.     if( p_sys->i_headers == 0 && p_dec->fmt_in.i_extra )
  164.     {
  165.         /* Headers already available as extra data */
  166.         p_sys->i_headers = 3;
  167.     }
  168.     else if( oggpacket.bytes && p_sys->i_headers < 3 )
  169.     {
  170.         /* Backup headers as extra data */
  171.         uint8_t *p_extra;
  172.         p_dec->fmt_in.p_extra =
  173.             realloc( p_dec->fmt_in.p_extra, p_dec->fmt_in.i_extra +
  174.                      oggpacket.bytes + 2 );
  175.         p_extra = p_dec->fmt_in.p_extra + p_dec->fmt_in.i_extra;
  176.         *(p_extra++) = oggpacket.bytes >> 8;
  177.         *(p_extra++) = oggpacket.bytes & 0xFF;
  178.         memcpy( p_extra, oggpacket.packet, oggpacket.bytes );
  179.         p_dec->fmt_in.i_extra += oggpacket.bytes + 2;
  180.         block_Release( *pp_block );
  181.         p_sys->i_headers++;
  182.         return NULL;
  183.     }
  184.     if( p_sys->i_headers == 3 )
  185.     {
  186.         if( ProcessHeaders( p_dec ) != VLC_SUCCESS )
  187.         {
  188.             p_sys->i_headers = 0;
  189.             p_dec->fmt_in.i_extra = 0;
  190.             block_Release( *pp_block );
  191.             return NULL;
  192.         }
  193.         else p_sys->i_headers++;
  194.     }
  195.     return ProcessPacket( p_dec, &oggpacket, pp_block );
  196. }
  197. /*****************************************************************************
  198.  * ProcessHeaders: process Theora headers.
  199.  *****************************************************************************/
  200. static int ProcessHeaders( decoder_t *p_dec )
  201. {
  202.     decoder_sys_t *p_sys = p_dec->p_sys;
  203.     ogg_packet oggpacket;
  204.     uint8_t *p_extra;
  205.     int i_extra;
  206.     if( !p_dec->fmt_in.i_extra ) return VLC_EGENERIC;
  207.     oggpacket.granulepos = -1;
  208.     oggpacket.b_o_s = 1; /* yes this actually is a b_o_s packet :) */
  209.     oggpacket.e_o_s = 0;
  210.     oggpacket.packetno = 0;
  211.     p_extra = p_dec->fmt_in.p_extra;
  212.     i_extra = p_dec->fmt_in.i_extra;
  213.     /* Take care of the initial Vorbis header */
  214.     oggpacket.bytes = *(p_extra++) << 8;
  215.     oggpacket.bytes |= (*(p_extra++) & 0xFF);
  216.     oggpacket.packet = p_extra;
  217.     p_extra += oggpacket.bytes;
  218.     i_extra -= (oggpacket.bytes + 2);
  219.     if( i_extra < 0 )
  220.     {
  221.         msg_Err( p_dec, "header data corrupted");
  222.         return VLC_EGENERIC;
  223.     }
  224.     if( theora_decode_header( &p_sys->ti, &p_sys->tc, &oggpacket ) < 0 )
  225.     {
  226.         msg_Err( p_dec, "This bitstream does not contain Theora video data" );
  227.         return VLC_EGENERIC;
  228.     }
  229.     /* Set output properties */
  230.     p_dec->fmt_out.video.i_width = p_sys->ti.width;
  231.     p_dec->fmt_out.video.i_height = p_sys->ti.height;
  232.     if( p_sys->ti.frame_width && p_sys->ti.frame_height )
  233.     {
  234.         p_dec->fmt_out.video.i_width = p_sys->ti.frame_width;
  235.         p_dec->fmt_out.video.i_height = p_sys->ti.frame_height;
  236.     }
  237.     if( p_sys->ti.aspect_denominator && p_sys->ti.aspect_numerator )
  238.     {
  239.         p_dec->fmt_out.video.i_aspect = ((int64_t)VOUT_ASPECT_FACTOR) *
  240.             ( p_sys->ti.aspect_numerator * p_sys->ti.width ) /
  241.             ( p_sys->ti.aspect_denominator * p_sys->ti.height );
  242.     }
  243.     else
  244.     {
  245.         p_dec->fmt_out.video.i_aspect = VOUT_ASPECT_FACTOR *
  246.             p_sys->ti.frame_width / p_sys->ti.frame_height;
  247.     }
  248.     if( p_sys->ti.fps_numerator > 0 && p_sys->ti.fps_denominator > 0 )
  249.     {
  250.         p_dec->fmt_out.video.i_frame_rate = p_sys->ti.fps_numerator;
  251.         p_dec->fmt_out.video.i_frame_rate_base = p_sys->ti.fps_denominator;
  252.     }
  253.     msg_Dbg( p_dec, "%dx%d %.02f fps video, frame content "
  254.              "is %dx%d with offset (%d,%d)",
  255.              p_sys->ti.width, p_sys->ti.height,
  256.              (double)p_sys->ti.fps_numerator/p_sys->ti.fps_denominator,
  257.              p_sys->ti.frame_width, p_sys->ti.frame_height,
  258.              p_sys->ti.offset_x, p_sys->ti.offset_y );
  259.     /* The next packet in order is the comments header */
  260.     oggpacket.b_o_s = 0;
  261.     oggpacket.bytes = *(p_extra++) << 8;
  262.     oggpacket.bytes |= (*(p_extra++) & 0xFF);
  263.     oggpacket.packet = p_extra;
  264.     p_extra += oggpacket.bytes;
  265.     i_extra -= (oggpacket.bytes + 2);
  266.     if( i_extra < 0 )
  267.     {
  268.         msg_Err( p_dec, "header data corrupted");
  269.         return VLC_EGENERIC;
  270.     }
  271.     /* The next packet in order is the comments header */
  272.     if( theora_decode_header( &p_sys->ti, &p_sys->tc, &oggpacket ) < 0 )
  273.     {
  274.         msg_Err( p_dec, "2nd Theora header is corrupted" );
  275.         return VLC_EGENERIC;
  276.     }
  277.     ParseTheoraComments( p_dec );
  278.     /* The next packet in order is the codebooks header
  279.      * We need to watch out that this packet is not missing as a
  280.      * missing or corrupted header is fatal. */
  281.     oggpacket.bytes = *(p_extra++) << 8;
  282.     oggpacket.bytes |= (*(p_extra++) & 0xFF);
  283.     oggpacket.packet = p_extra;
  284.     i_extra -= (oggpacket.bytes + 2);
  285.     if( i_extra < 0 )
  286.     {
  287.         msg_Err( p_dec, "header data corrupted");
  288.         return VLC_EGENERIC;
  289.     }
  290.     /* The next packet in order is the codebooks header
  291.      * We need to watch out that this packet is not missing as a
  292.      * missing or corrupted header is fatal */
  293.     if( theora_decode_header( &p_sys->ti, &p_sys->tc, &oggpacket ) < 0 )
  294.     {
  295.         msg_Err( p_dec, "3rd Theora header is corrupted" );
  296.         return VLC_EGENERIC;
  297.     }
  298.     if( !p_sys->b_packetizer )
  299.     {
  300.         /* We have all the headers, initialize decoder */
  301.         theora_decode_init( &p_sys->td, &p_sys->ti );
  302.     }
  303.     else
  304.     {
  305.         p_dec->fmt_out.i_extra = p_dec->fmt_in.i_extra;
  306.         p_dec->fmt_out.p_extra =
  307.             realloc( p_dec->fmt_out.p_extra, p_dec->fmt_out.i_extra );
  308.         memcpy( p_dec->fmt_out.p_extra,
  309.                 p_dec->fmt_in.p_extra, p_dec->fmt_out.i_extra );
  310.     }
  311.     return VLC_SUCCESS;
  312. }
  313. /*****************************************************************************
  314.  * ProcessPacket: processes a theora packet.
  315.  *****************************************************************************/
  316. static void *ProcessPacket( decoder_t *p_dec, ogg_packet *p_oggpacket,
  317.                             block_t **pp_block )
  318. {
  319.     decoder_sys_t *p_sys = p_dec->p_sys;
  320.     block_t *p_block = *pp_block;
  321.     void *p_buf;
  322.     /* Date management */
  323.     if( p_block->i_pts > 0 && p_block->i_pts != p_sys->i_pts )
  324.     {
  325.         p_sys->i_pts = p_block->i_pts;
  326.     }
  327.     *pp_block = NULL; /* To avoid being fed the same packet again */
  328.     if( p_sys->b_packetizer )
  329.     {
  330.         /* Date management */
  331.         p_block->i_dts = p_block->i_pts = p_sys->i_pts;
  332.         if( p_sys->i_headers >= 3 )
  333.             p_block->i_length = p_sys->i_pts - p_block->i_pts;
  334.         else
  335.             p_block->i_length = 0;
  336.         p_buf = p_block;
  337.     }
  338.     else
  339.     {
  340.         if( p_sys->i_headers >= 3 )
  341.             p_buf = DecodePacket( p_dec, p_oggpacket );
  342.         else
  343.             p_buf = NULL;
  344.         if( p_block ) block_Release( p_block );
  345.     }
  346.     /* Date management */
  347.     p_sys->i_pts += ( I64C(1000000) * p_sys->ti.fps_denominator /
  348.                       p_sys->ti.fps_numerator ); /* 1 frame per packet */
  349.     return p_buf;
  350. }
  351. /*****************************************************************************
  352.  * DecodePacket: decodes a Theora packet.
  353.  *****************************************************************************/
  354. static picture_t *DecodePacket( decoder_t *p_dec, ogg_packet *p_oggpacket )
  355. {
  356.     decoder_sys_t *p_sys = p_dec->p_sys;
  357.     picture_t *p_pic;
  358.     yuv_buffer yuv;
  359.     theora_decode_packetin( &p_sys->td, p_oggpacket );
  360.     /* Decode */
  361.     theora_decode_YUVout( &p_sys->td, &yuv );
  362.     /* Get a new picture */
  363.     p_pic = p_dec->pf_vout_buffer_new( p_dec );
  364.     if( !p_pic ) return NULL;
  365.     theora_CopyPicture( p_dec, p_pic, &yuv );
  366.     p_pic->date = p_sys->i_pts;
  367.     return p_pic;
  368. }
  369. /*****************************************************************************
  370.  * ParseTheoraComments: FIXME should be done in demuxer
  371.  *****************************************************************************/
  372. static void ParseTheoraComments( decoder_t *p_dec )
  373. {
  374.     input_thread_t *p_input = (input_thread_t *)p_dec->p_parent;
  375.     char *psz_name, *psz_value, *psz_comment;
  376.     int i = 0;
  377.     if( p_input->i_object_type != VLC_OBJECT_INPUT ) return;
  378.     while ( i < p_dec->p_sys->tc.comments )
  379.     {
  380.         psz_comment = strdup( p_dec->p_sys->tc.user_comments[i] );
  381.         if( !psz_comment )
  382.         {
  383.             msg_Warn( p_dec, "out of memory" );
  384.             break;
  385.         }
  386.         psz_name = psz_comment;
  387.         psz_value = strchr( psz_comment, '=' );
  388.         if( psz_value )
  389.         {
  390.             *psz_value = '';
  391.             psz_value++;
  392.             input_Control( p_input, INPUT_ADD_INFO, _("Theora comment"),
  393.                            psz_name, psz_value );
  394.         }
  395.         free( psz_comment );
  396.         i++;
  397.     }
  398. }
  399. /*****************************************************************************
  400.  * CloseDecoder: theora decoder destruction
  401.  *****************************************************************************/
  402. static void CloseDecoder( vlc_object_t *p_this )
  403. {
  404.     decoder_t *p_dec = (decoder_t *)p_this;
  405.     decoder_sys_t *p_sys = p_dec->p_sys;
  406.     theora_info_clear( &p_sys->ti );
  407.     theora_comment_clear( &p_sys->tc );
  408.     free( p_sys );
  409. }
  410. /*****************************************************************************
  411.  * theora_CopyPicture: copy a picture from theora internal buffers to a
  412.  *                     picture_t structure.
  413.  *****************************************************************************/
  414. static void theora_CopyPicture( decoder_t *p_dec, picture_t *p_pic,
  415.                                 yuv_buffer *yuv )
  416. {
  417.     int i_plane, i_line, i_width, i_dst_stride, i_src_stride;
  418.     int i_src_xoffset, i_src_yoffset;
  419.     uint8_t *p_dst, *p_src;
  420.     for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
  421.     {
  422.         p_dst = p_pic->p[i_plane].p_pixels;
  423.         p_src = i_plane ? (i_plane - 1 ? yuv->v : yuv->u ) : yuv->y;
  424.         i_width = p_pic->p[i_plane].i_visible_pitch;
  425.         i_dst_stride  = p_pic->p[i_plane].i_pitch;
  426.         i_src_stride  = i_plane ? yuv->uv_stride : yuv->y_stride;
  427.         i_src_xoffset = p_dec->p_sys->ti.offset_x;
  428.         i_src_yoffset = p_dec->p_sys->ti.offset_y;
  429.         if( i_plane )
  430.         {
  431.             i_src_xoffset /= 2;
  432.             i_src_yoffset /= 2;
  433.         }
  434.         p_src += (i_src_yoffset * i_src_stride + i_src_yoffset);
  435.         for( i_line = 0; i_line < p_pic->p[i_plane].i_visible_lines; i_line++ )
  436.         {
  437.             p_dec->p_vlc->pf_memcpy( p_dst, p_src, i_width );
  438.             p_src += i_src_stride;
  439.             p_dst += i_dst_stride;
  440.         }
  441.     }
  442. }
  443. /*****************************************************************************
  444.  * encoder_sys_t : theora encoder descriptor
  445.  *****************************************************************************/
  446. struct encoder_sys_t
  447. {
  448.     /*
  449.      * Input properties
  450.      */
  451.     vlc_bool_t b_headers;
  452.     /*
  453.      * Theora properties
  454.      */
  455.     theora_info      ti;                        /* theora bitstream settings */
  456.     theora_comment   tc;                            /* theora comment header */
  457.     theora_state     td;                   /* theora bitstream user comments */
  458.     int i_width, i_height;
  459. };
  460. /*****************************************************************************
  461.  * OpenEncoder: probe the encoder and return score
  462.  *****************************************************************************/
  463. static int OpenEncoder( vlc_object_t *p_this )
  464. {
  465.     encoder_t *p_enc = (encoder_t *)p_this;
  466.     encoder_sys_t *p_sys = p_enc->p_sys;
  467.     ogg_packet header;
  468.     uint8_t *p_extra;
  469.     vlc_value_t val;
  470.     int i_quality, i;
  471.     if( p_enc->fmt_out.i_codec != VLC_FOURCC('t','h','e','o') &&
  472.         !p_enc->b_force )
  473.     {
  474.         return VLC_EGENERIC;
  475.     }
  476.     /* Allocate the memory needed to store the decoder's structure */
  477.     if( ( p_sys = (encoder_sys_t *)malloc(sizeof(encoder_sys_t)) ) == NULL )
  478.     {
  479.         msg_Err( p_enc, "out of memory" );
  480.         return VLC_EGENERIC;
  481.     }
  482.     p_enc->p_sys = p_sys;
  483.     p_enc->pf_encode_video = Encode;
  484.     p_enc->fmt_in.i_codec = VLC_FOURCC('I','4','2','0');
  485.     p_enc->fmt_out.i_codec = VLC_FOURCC('t','h','e','o');
  486.     sout_CfgParse( p_enc, ENC_CFG_PREFIX, ppsz_enc_options, p_enc->p_cfg );
  487.     var_Get( p_enc, ENC_CFG_PREFIX "quality", &val );
  488.     i_quality = val.i_int;
  489.     if( i_quality > 10 ) i_quality = 10;
  490.     if( i_quality < 0 ) i_quality = 0;
  491.     theora_info_init( &p_sys->ti );
  492.     p_sys->ti.width = p_enc->fmt_in.video.i_width;
  493.     p_sys->ti.height = p_enc->fmt_in.video.i_height;
  494.     if( p_sys->ti.width % 16 || p_sys->ti.height % 16 )
  495.     {
  496.         /* Pictures from the transcoder should always have a pitch
  497.          * which is a multiple of 16 */
  498.         p_sys->ti.width = (p_sys->ti.width + 15) >> 4 << 4;
  499.         p_sys->ti.height = (p_sys->ti.height + 15) >> 4 << 4;
  500.         msg_Dbg( p_enc, "padding video from %dx%d to %dx%d",
  501.                  p_enc->fmt_in.video.i_width, p_enc->fmt_in.video.i_height,
  502.                  p_sys->ti.width, p_sys->ti.height );
  503.     }
  504.     p_sys->ti.frame_width = p_enc->fmt_in.video.i_width;
  505.     p_sys->ti.frame_height = p_enc->fmt_in.video.i_height;
  506.     p_sys->ti.offset_x = 0 /*frame_x_offset*/;
  507.     p_sys->ti.offset_y = 0 /*frame_y_offset*/;
  508.     p_sys->i_width = p_sys->ti.width;
  509.     p_sys->i_height = p_sys->ti.height;
  510.     if( !p_enc->fmt_in.video.i_frame_rate ||
  511.         !p_enc->fmt_in.video.i_frame_rate_base )
  512.     {
  513.         p_sys->ti.fps_numerator = 25;
  514.         p_sys->ti.fps_denominator = 1;
  515.     }
  516.     else
  517.     {
  518.         p_sys->ti.fps_numerator = p_enc->fmt_in.video.i_frame_rate;
  519.         p_sys->ti.fps_denominator = p_enc->fmt_in.video.i_frame_rate_base;
  520.     }
  521.     if( p_enc->fmt_in.video.i_aspect )
  522.     {
  523.         int64_t i_num, i_den;
  524.         int i_dst_num, i_dst_den;
  525.         i_num = p_enc->fmt_in.video.i_aspect * (int64_t)p_sys->ti.height;
  526.         i_den = VOUT_ASPECT_FACTOR * p_sys->ti.width;
  527.         vlc_reduce( &i_dst_num, &i_dst_den, i_num, i_den, 0 );
  528.         p_sys->ti.aspect_numerator = i_dst_num;
  529.         p_sys->ti.aspect_denominator = i_dst_den;
  530.     }
  531.     else
  532.     {
  533.         p_sys->ti.aspect_numerator = 4;
  534.         p_sys->ti.aspect_denominator = 3;
  535.     }
  536.     p_sys->ti.target_bitrate = p_enc->fmt_out.i_bitrate;
  537.     p_sys->ti.quality = ((float)i_quality) * 6.3;
  538.     p_sys->ti.dropframes_p = 0;
  539.     p_sys->ti.quick_p = 1;
  540.     p_sys->ti.keyframe_auto_p = 1;
  541.     p_sys->ti.keyframe_frequency = 64;
  542.     p_sys->ti.keyframe_frequency_force = 64;
  543.     p_sys->ti.keyframe_data_target_bitrate = p_enc->fmt_out.i_bitrate * 1.5;
  544.     p_sys->ti.keyframe_auto_threshold = 80;
  545.     p_sys->ti.keyframe_mindistance = 8;
  546.     p_sys->ti.noise_sensitivity = 1;
  547.     theora_encode_init( &p_sys->td, &p_sys->ti );
  548.     theora_info_clear( &p_sys->ti );
  549.     theora_comment_init( &p_sys->tc );
  550.     /* Create and store headers */
  551.     p_enc->fmt_out.i_extra = 3 * 2;
  552.     for( i = 0; i < 3; i++ )
  553.     {
  554.         if( i == 0 ) theora_encode_header( &p_sys->td, &header );
  555.         else if( i == 1 ) theora_encode_comment( &p_sys->tc, &header );
  556.         else if( i == 2 ) theora_encode_tables( &p_sys->td, &header );
  557.         p_enc->fmt_out.p_extra =
  558.             realloc( p_enc->fmt_out.p_extra,
  559.                      p_enc->fmt_out.i_extra + header.bytes );
  560.         p_extra = p_enc->fmt_out.p_extra;
  561.         p_extra += p_enc->fmt_out.i_extra + (i-3)*2;
  562.         p_enc->fmt_out.i_extra += header.bytes;
  563.         *(p_extra++) = header.bytes >> 8;
  564.         *(p_extra++) = header.bytes & 0xFF;
  565.         memcpy( p_extra, header.packet, header.bytes );
  566.     }
  567.     return VLC_SUCCESS;
  568. }
  569. /****************************************************************************
  570.  * Encode: the whole thing
  571.  ****************************************************************************
  572.  * This function spits out ogg packets.
  573.  ****************************************************************************/
  574. static block_t *Encode( encoder_t *p_enc, picture_t *p_pict )
  575. {
  576.     encoder_sys_t *p_sys = p_enc->p_sys;
  577.     ogg_packet oggpacket;
  578.     block_t *p_block;
  579.     yuv_buffer yuv;
  580.     int i;
  581.     /* Sanity check */
  582.     if( p_pict->p[0].i_pitch < (int)p_sys->i_width ||
  583.         p_pict->p[0].i_lines < (int)p_sys->i_height )
  584.     {
  585.         msg_Warn( p_enc, "frame is smaller than encoding size"
  586.                   "(%ix%i->%ix%i) -> dropping frame",
  587.                   p_pict->p[0].i_pitch, p_pict->p[0].i_lines,
  588.                   p_sys->i_width, p_sys->i_height );
  589.         return NULL;
  590.     }
  591.     /* Fill padding */
  592.     if( p_pict->p[0].i_visible_pitch < (int)p_sys->i_width )
  593.     {
  594.         for( i = 0; i < p_sys->i_height; i++ )
  595.         {
  596.             memset( p_pict->p[0].p_pixels + i * p_pict->p[0].i_pitch +
  597.                     p_pict->p[0].i_visible_pitch,
  598.                     *( p_pict->p[0].p_pixels + i * p_pict->p[0].i_pitch +
  599.                        p_pict->p[0].i_visible_pitch - 1 ),
  600.                     p_sys->i_width - p_pict->p[0].i_visible_pitch );
  601.         }
  602.         for( i = 0; i < p_sys->i_height / 2; i++ )
  603.         {
  604.             memset( p_pict->p[1].p_pixels + i * p_pict->p[1].i_pitch +
  605.                     p_pict->p[1].i_visible_pitch,
  606.                     *( p_pict->p[1].p_pixels + i * p_pict->p[1].i_pitch +
  607.                        p_pict->p[1].i_visible_pitch - 1 ),
  608.                     p_sys->i_width / 2 - p_pict->p[1].i_visible_pitch );
  609.             memset( p_pict->p[2].p_pixels + i * p_pict->p[2].i_pitch +
  610.                     p_pict->p[2].i_visible_pitch,
  611.                     *( p_pict->p[2].p_pixels + i * p_pict->p[2].i_pitch +
  612.                        p_pict->p[2].i_visible_pitch - 1 ),
  613.                     p_sys->i_width / 2 - p_pict->p[2].i_visible_pitch );
  614.         }
  615.     }
  616.     if( p_pict->p[0].i_visible_lines < (int)p_sys->i_height )
  617.     {
  618.         for( i = p_pict->p[0].i_visible_lines; i < p_sys->i_height; i++ )
  619.         {
  620.             memset( p_pict->p[0].p_pixels + i * p_pict->p[0].i_pitch, 0,
  621.                     p_sys->i_width );
  622.         }
  623.         for( i = p_pict->p[1].i_visible_lines; i < p_sys->i_height / 2; i++ )
  624.         {
  625.             memset( p_pict->p[1].p_pixels + i * p_pict->p[1].i_pitch, 0x80,
  626.                     p_sys->i_width / 2 );
  627.             memset( p_pict->p[2].p_pixels + i * p_pict->p[2].i_pitch, 0x80,
  628.                     p_sys->i_width / 2 );
  629.         }
  630.     }
  631.     /* Theora is a one-frame-in, one-frame-out system. Submit a frame
  632.      * for compression and pull out the packet. */
  633.     yuv.y_width  = p_sys->i_width;
  634.     yuv.y_height = p_sys->i_height;
  635.     yuv.y_stride = p_pict->p[0].i_pitch;
  636.     yuv.uv_width  = p_sys->i_width / 2;
  637.     yuv.uv_height = p_sys->i_height / 2;
  638.     yuv.uv_stride = p_pict->p[1].i_pitch;
  639.     yuv.y = p_pict->p[0].p_pixels;
  640.     yuv.u = p_pict->p[1].p_pixels;
  641.     yuv.v = p_pict->p[2].p_pixels;
  642.     if( theora_encode_YUVin( &p_sys->td, &yuv ) < 0 )
  643.     {
  644.         msg_Warn( p_enc, "failed encoding a frame" );
  645.         return NULL;
  646.     }
  647.     theora_encode_packetout( &p_sys->td, 0, &oggpacket );
  648.     /* Ogg packet to block */
  649.     p_block = block_New( p_enc, oggpacket.bytes );
  650.     memcpy( p_block->p_buffer, oggpacket.packet, oggpacket.bytes );
  651.     p_block->i_dts = p_block->i_pts = p_pict->date;
  652.     return p_block;
  653. }
  654. /*****************************************************************************
  655.  * CloseEncoder: theora encoder destruction
  656.  *****************************************************************************/
  657. static void CloseEncoder( vlc_object_t *p_this )
  658. {
  659.     encoder_t *p_enc = (encoder_t *)p_this;
  660.     encoder_sys_t *p_sys = p_enc->p_sys;
  661.     theora_info_clear( &p_sys->ti );
  662.     theora_comment_clear( &p_sys->tc );
  663.     free( p_sys );
  664. }