]> git.sesse.net Git - vlc/blob - modules/codec/theora.c
* include/vlc_es_out.h, src/input/es_out.c: added an ES_OUT_SET_FMT control.
[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
280     if( p_sys->ti.aspect_denominator && p_sys->ti.aspect_numerator )
281     {
282         p_dec->fmt_out.video.i_aspect = ((int64_t)VOUT_ASPECT_FACTOR) *
283             ( p_sys->ti.aspect_numerator * p_sys->ti.width ) /
284             ( p_sys->ti.aspect_denominator * p_sys->ti.height );
285     }
286     else
287     {
288         p_dec->fmt_out.video.i_aspect = VOUT_ASPECT_FACTOR *
289             p_sys->ti.frame_width / p_sys->ti.frame_height;
290     }
291
292     msg_Dbg( p_dec, "%dx%d %.02f fps video, frame content "
293              "is %dx%d with offset (%d,%d)",
294              p_sys->ti.width, p_sys->ti.height,
295              (double)p_sys->ti.fps_numerator/p_sys->ti.fps_denominator,
296              p_sys->ti.frame_width, p_sys->ti.frame_height,
297              p_sys->ti.offset_x, p_sys->ti.offset_y );
298
299     /* The next packet in order is the comments header */
300     oggpacket.b_o_s = 0;
301     oggpacket.bytes = *(p_extra++) << 8;
302     oggpacket.bytes |= (*(p_extra++) & 0xFF);
303     oggpacket.packet = p_extra;
304     p_extra += oggpacket.bytes;
305     i_extra -= (oggpacket.bytes + 2);
306     if( i_extra < 0 )
307     {
308         msg_Err( p_dec, "header data corrupted");
309         return VLC_EGENERIC;
310     }
311
312     /* The next packet in order is the comments header */
313     if( theora_decode_header( &p_sys->ti, &p_sys->tc, &oggpacket ) < 0 )
314     {
315         msg_Err( p_dec, "2nd Theora header is corrupted" );
316         return VLC_EGENERIC;
317     }
318
319     ParseTheoraComments( p_dec );
320
321     /* The next packet in order is the codebooks header
322      * We need to watch out that this packet is not missing as a
323      * missing or corrupted header is fatal. */
324     oggpacket.bytes = *(p_extra++) << 8;
325     oggpacket.bytes |= (*(p_extra++) & 0xFF);
326     oggpacket.packet = p_extra;
327     i_extra -= (oggpacket.bytes + 2);
328     if( i_extra < 0 )
329     {
330         msg_Err( p_dec, "header data corrupted");
331         return VLC_EGENERIC;
332     }
333
334     /* The next packet in order is the codebooks header
335      * We need to watch out that this packet is not missing as a
336      * missing or corrupted header is fatal */
337     if( theora_decode_header( &p_sys->ti, &p_sys->tc, &oggpacket ) < 0 )
338     {
339         msg_Err( p_dec, "3rd Theora header is corrupted" );
340         return VLC_EGENERIC;
341     }
342
343     if( !p_sys->b_packetizer )
344     {
345         /* We have all the headers, initialize decoder */
346         theora_decode_init( &p_sys->td, &p_sys->ti );
347     }
348     else
349     {
350         p_dec->fmt_out.i_extra = p_dec->fmt_in.i_extra;
351         p_dec->fmt_out.p_extra =
352             realloc( p_dec->fmt_out.p_extra, p_dec->fmt_out.i_extra );
353         memcpy( p_dec->fmt_out.p_extra,
354                 p_dec->fmt_in.p_extra, p_dec->fmt_out.i_extra );
355     }
356
357     return VLC_SUCCESS;
358 }
359
360 /*****************************************************************************
361  * ProcessPacket: processes a theora packet.
362  *****************************************************************************/
363 static void *ProcessPacket( decoder_t *p_dec, ogg_packet *p_oggpacket,
364                             block_t **pp_block )
365 {
366     decoder_sys_t *p_sys = p_dec->p_sys;
367     block_t *p_block = *pp_block;
368     void *p_buf;
369
370     /* Date management */
371     if( p_block->i_pts > 0 && p_block->i_pts != p_sys->i_pts )
372     {
373         p_sys->i_pts = p_block->i_pts;
374     }
375
376     *pp_block = NULL; /* To avoid being fed the same packet again */
377
378     if( p_sys->b_packetizer )
379     {
380         /* Date management */
381         p_block->i_dts = p_block->i_pts = p_sys->i_pts;
382
383         if( p_sys->i_headers >= 3 )
384             p_block->i_length = p_sys->i_pts - p_block->i_pts;
385         else
386             p_block->i_length = 0;
387
388         p_buf = p_block;
389     }
390     else
391     {
392         if( p_sys->i_headers >= 3 )
393             p_buf = DecodePacket( p_dec, p_oggpacket );
394         else
395             p_buf = NULL;
396
397         if( p_block ) block_Release( p_block );
398     }
399
400     /* Date management */
401     p_sys->i_pts += ( I64C(1000000) * p_sys->ti.fps_denominator /
402                       p_sys->ti.fps_numerator ); /* 1 frame per packet */
403
404     return p_buf;
405 }
406
407 /*****************************************************************************
408  * DecodePacket: decodes a Theora packet.
409  *****************************************************************************/
410 static picture_t *DecodePacket( decoder_t *p_dec, ogg_packet *p_oggpacket )
411 {
412     decoder_sys_t *p_sys = p_dec->p_sys;
413     picture_t *p_pic;
414     yuv_buffer yuv;
415
416     theora_decode_packetin( &p_sys->td, p_oggpacket );
417
418     /* Decode */
419     theora_decode_YUVout( &p_sys->td, &yuv );
420
421     /* Get a new picture */
422     p_pic = p_dec->pf_vout_buffer_new( p_dec );
423     if( !p_pic ) return NULL;
424
425     theora_CopyPicture( p_dec, p_pic, &yuv );
426
427     p_pic->date = p_sys->i_pts;
428
429     return p_pic;
430 }
431
432 /*****************************************************************************
433  * ParseTheoraComments: FIXME should be done in demuxer
434  *****************************************************************************/
435 static void ParseTheoraComments( decoder_t *p_dec )
436 {
437     input_thread_t *p_input = (input_thread_t *)p_dec->p_parent;
438     char *psz_name, *psz_value, *psz_comment;
439     int i = 0;
440
441     if( p_input->i_object_type != VLC_OBJECT_INPUT ) return;
442
443     while ( i < p_dec->p_sys->tc.comments )
444     {
445         psz_comment = strdup( p_dec->p_sys->tc.user_comments[i] );
446         if( !psz_comment )
447         {
448             msg_Warn( p_dec, "out of memory" );
449             break;
450         }
451         psz_name = psz_comment;
452         psz_value = strchr( psz_comment, '=' );
453         if( psz_value )
454         {
455             *psz_value = '\0';
456             psz_value++;
457             input_Control( p_input, INPUT_ADD_INFO, _("Theora comment"),
458                            psz_name, psz_value );
459         }
460         free( psz_comment );
461         i++;
462     }
463 }
464
465 /*****************************************************************************
466  * CloseDecoder: theora decoder destruction
467  *****************************************************************************/
468 static void CloseDecoder( vlc_object_t *p_this )
469 {
470     decoder_t *p_dec = (decoder_t *)p_this;
471     decoder_sys_t *p_sys = p_dec->p_sys;
472
473     theora_info_clear( &p_sys->ti );
474     theora_comment_clear( &p_sys->tc );
475
476     free( p_sys );
477 }
478
479 /*****************************************************************************
480  * theora_CopyPicture: copy a picture from theora internal buffers to a
481  *                     picture_t structure.
482  *****************************************************************************/
483 static void theora_CopyPicture( decoder_t *p_dec, picture_t *p_pic,
484                                 yuv_buffer *yuv )
485 {
486     int i_plane, i_line, i_width, i_dst_stride, i_src_stride;
487     int i_src_xoffset, i_src_yoffset;
488     uint8_t *p_dst, *p_src;
489
490     for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
491     {
492         p_dst = p_pic->p[i_plane].p_pixels;
493         p_src = i_plane ? (i_plane - 1 ? yuv->v : yuv->u ) : yuv->y;
494         i_width = p_pic->p[i_plane].i_visible_pitch;
495         i_dst_stride  = p_pic->p[i_plane].i_pitch;
496         i_src_stride  = i_plane ? yuv->uv_stride : yuv->y_stride;
497         i_src_xoffset = p_dec->p_sys->ti.offset_x;
498         i_src_yoffset = p_dec->p_sys->ti.offset_y;
499         if( i_plane )
500         {
501             i_src_xoffset /= 2;
502             i_src_yoffset /= 2;
503         }
504
505         p_src += (i_src_yoffset * i_src_stride + i_src_yoffset);
506
507         for( i_line = 0; i_line < p_pic->p[i_plane].i_lines; i_line++ )
508         {
509             p_dec->p_vlc->pf_memcpy( p_dst, p_src, i_width );
510             p_src += i_src_stride;
511             p_dst += i_dst_stride;
512         }
513     }
514 }
515
516 /*****************************************************************************
517  * encoder_sys_t : theora encoder descriptor
518  *****************************************************************************/
519 struct encoder_sys_t
520 {
521     /*
522      * Input properties
523      */
524     vlc_bool_t b_headers;
525
526     /*
527      * Theora properties
528      */
529     theora_info      ti;                        /* theora bitstream settings */
530     theora_comment   tc;                            /* theora comment header */
531     theora_state     td;                   /* theora bitstream user comments */
532
533     /*
534      * Common properties
535      */
536     mtime_t i_pts;
537 };
538
539 /*****************************************************************************
540  * OpenEncoder: probe the encoder and return score
541  *****************************************************************************/
542 static int OpenEncoder( vlc_object_t *p_this )
543 {
544     encoder_t *p_enc = (encoder_t *)p_this;
545     encoder_sys_t *p_sys = p_enc->p_sys;
546     ogg_packet header;
547     uint8_t *p_extra;
548     vlc_value_t val;
549     int i_quality, i;
550
551     if( p_enc->fmt_out.i_codec != VLC_FOURCC('t','h','e','o') &&
552         !p_enc->b_force )
553     {
554         return VLC_EGENERIC;
555     }
556
557     if( p_enc->fmt_in.video.i_width % 16 ||
558         p_enc->fmt_in.video.i_height % 16 )
559     {
560         msg_Err( p_enc, "Theora video encoding requires dimensions which are "
561                  "multiples of 16. Which is not the case here (%dx%d).",
562                  p_enc->fmt_in.video.i_width, p_enc->fmt_in.video.i_height );
563         return VLC_EGENERIC;
564     }
565
566     /* Allocate the memory needed to store the decoder's structure */
567     if( ( p_sys = (encoder_sys_t *)malloc(sizeof(encoder_sys_t)) ) == NULL )
568     {
569         msg_Err( p_enc, "out of memory" );
570         return VLC_EGENERIC;
571     }
572     p_enc->p_sys = p_sys;
573
574     p_enc->pf_encode_video = Encode;
575     p_enc->fmt_in.i_codec = VLC_FOURCC('I','4','2','0');
576     p_enc->fmt_out.i_codec = VLC_FOURCC('t','h','e','o');
577
578     sout_CfgParse( p_enc, ENC_CFG_PREFIX, ppsz_enc_options, p_enc->p_cfg );
579
580     var_Get( p_enc, ENC_CFG_PREFIX "quality", &val );
581     i_quality = val.i_int;
582     if( i_quality > 10 ) i_quality = 10;
583     if( i_quality < 0 ) i_quality = 0;
584
585     theora_info_init( &p_sys->ti );
586
587     p_sys->ti.width = p_enc->fmt_in.video.i_width;
588     p_sys->ti.height = p_enc->fmt_in.video.i_height;
589     p_sys->ti.frame_width = p_enc->fmt_in.video.i_width;
590     p_sys->ti.frame_height = p_enc->fmt_in.video.i_height;
591     p_sys->ti.offset_x = 0 /*frame_x_offset*/;
592     p_sys->ti.offset_y = 0/*frame_y_offset*/;
593
594     if( !p_enc->fmt_in.video.i_frame_rate ||
595         !p_enc->fmt_in.video.i_frame_rate_base )
596     {
597         p_sys->ti.fps_numerator = 25;
598         p_sys->ti.fps_denominator = 1;
599     }
600     else
601     {
602         p_sys->ti.fps_numerator = p_enc->fmt_in.video.i_frame_rate;
603         p_sys->ti.fps_denominator = p_enc->fmt_in.video.i_frame_rate_base;
604     }
605
606     if( p_enc->fmt_in.video.i_aspect )
607     {
608         p_sys->ti.aspect_numerator =
609             p_enc->fmt_in.video.i_aspect * p_sys->ti.height / p_sys->ti.width;
610         p_sys->ti.aspect_denominator = VOUT_ASPECT_FACTOR;
611     }
612     else
613     {
614         p_sys->ti.aspect_numerator = 4;
615         p_sys->ti.aspect_denominator = 3;
616     }
617
618     p_sys->ti.target_bitrate = p_enc->fmt_out.i_bitrate;
619     p_sys->ti.quality = ((float)i_quality) * 6.3;
620
621     p_sys->ti.dropframes_p = 0;
622     p_sys->ti.quick_p = 1;
623     p_sys->ti.keyframe_auto_p = 1;
624     p_sys->ti.keyframe_frequency = 64;
625     p_sys->ti.keyframe_frequency_force = 64;
626     p_sys->ti.keyframe_data_target_bitrate = p_enc->fmt_out.i_bitrate * 1.5;
627     p_sys->ti.keyframe_auto_threshold = 80;
628     p_sys->ti.keyframe_mindistance = 8;
629     p_sys->ti.noise_sensitivity = 1;
630
631     theora_encode_init( &p_sys->td, &p_sys->ti );
632     theora_info_clear( &p_sys->ti );
633     theora_comment_init( &p_sys->tc );
634
635     /* Create and store headers */
636     p_enc->fmt_out.i_extra = 3 * 2;
637     for( i = 0; i < 3; i++ )
638     {
639         if( i == 0 ) theora_encode_header( &p_sys->td, &header );
640         else if( i == 1 ) theora_encode_comment( &p_sys->tc, &header );
641         else if( i == 2 ) theora_encode_tables( &p_sys->td, &header );
642
643         p_enc->fmt_out.p_extra =
644             realloc( p_enc->fmt_out.p_extra,
645                      p_enc->fmt_out.i_extra + header.bytes );
646         p_extra = p_enc->fmt_out.p_extra;
647         p_extra += p_enc->fmt_out.i_extra + (i-3)*2;
648         p_enc->fmt_out.i_extra += header.bytes;
649
650         *(p_extra++) = header.bytes >> 8;
651         *(p_extra++) = header.bytes & 0xFF;
652
653         memcpy( p_extra, header.packet, header.bytes );
654     }
655
656     return VLC_SUCCESS;
657 }
658
659 /****************************************************************************
660  * Encode: the whole thing
661  ****************************************************************************
662  * This function spits out ogg packets.
663  ****************************************************************************/
664 static block_t *Encode( encoder_t *p_enc, picture_t *p_pict )
665 {
666     encoder_sys_t *p_sys = p_enc->p_sys;
667     ogg_packet oggpacket;
668     block_t *p_block;
669     yuv_buffer yuv;
670
671     /* Theora is a one-frame-in, one-frame-out system. Submit a frame
672      * for compression and pull out the packet. */
673
674     yuv.y_width  = p_pict->p[0].i_visible_pitch;
675     yuv.y_height = p_pict->p[0].i_lines;
676     yuv.y_stride = p_pict->p[0].i_pitch;
677
678     yuv.uv_width  = p_pict->p[1].i_visible_pitch;
679     yuv.uv_height = p_pict->p[1].i_lines;
680     yuv.uv_stride = p_pict->p[1].i_pitch;
681
682     yuv.y = p_pict->p[0].p_pixels;
683     yuv.u = p_pict->p[1].p_pixels;
684     yuv.v = p_pict->p[2].p_pixels;
685
686     if( theora_encode_YUVin( &p_sys->td, &yuv ) < 0 )
687     {
688         msg_Warn( p_enc, "failed encoding a frame" );
689         return NULL;
690     }
691
692     theora_encode_packetout( &p_sys->td, 0, &oggpacket );
693
694     /* Ogg packet to block */
695     p_block = block_New( p_enc, oggpacket.bytes );
696     memcpy( p_block->p_buffer, oggpacket.packet, oggpacket.bytes );
697     p_block->i_dts = p_block->i_pts = p_pict->date;
698
699     return p_block;
700 }
701
702 /*****************************************************************************
703  * CloseEncoder: theora encoder destruction
704  *****************************************************************************/
705 static void CloseEncoder( vlc_object_t *p_this )
706 {
707     encoder_t *p_enc = (encoder_t *)p_this;
708     encoder_sys_t *p_sys = p_enc->p_sys;
709
710     theora_info_clear( &p_sys->ti );
711     theora_comment_clear( &p_sys->tc );
712
713     free( p_sys );
714 }