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