OSDN Git Service

Structural changes, in order to eventually be able to compile HB
[handbrake-jp/handbrake-jp-git.git] / libhb / encavcodec.c
1 /* $Id: encavcodec.c,v 1.23 2005/10/13 23:47:06 titer Exp $
2
3    This file is part of the HandBrake source code.
4    Homepage: <http://handbrake.m0k.org/>.
5    It may be used under the terms of the GNU General Public License. */
6
7 #include "hb.h"
8
9 #include "ffmpeg/avcodec.h"
10
11 struct hb_work_private_s
12 {
13     hb_job_t * job;
14     AVCodecContext * context;
15     FILE * file;
16 };
17
18 int  encavcodecInit( hb_work_object_t *, hb_job_t * );
19 int  encavcodecWork( hb_work_object_t *, hb_buffer_t **, hb_buffer_t ** );
20 void encavcodecClose( hb_work_object_t * );
21
22 hb_work_object_t hb_encavcodec =
23 {   
24     WORK_DECSUB,
25     "MPEG-4 encoder (libavcodec)",
26     encavcodecInit,
27     encavcodecWork,
28     encavcodecClose
29 }; 
30
31 int encavcodecInit( hb_work_object_t * w, hb_job_t * job )
32 {
33     AVCodec * codec;
34     AVCodecContext * context;
35     
36     hb_work_private_t * pv = calloc( 1, sizeof( hb_work_private_t ) );
37     w->private_data = pv;
38
39     pv->job = job;
40
41     codec = avcodec_find_encoder( CODEC_ID_MPEG4 );
42     if( !codec )
43     {
44         hb_log( "hb_work_encavcodec_init: avcodec_find_encoder "
45                 "failed" );
46     }
47     context = avcodec_alloc_context();
48     if( job->vquality < 0.0 || job->vquality > 1.0 )
49     {
50         /* Rate control */
51         context->bit_rate = 1000 * job->vbitrate;
52         context->bit_rate_tolerance = 10 * context->bit_rate;
53     }
54     else
55     {
56         /* Constant quantizer */
57         context->qmin = 31 - job->vquality * 30;
58         context->qmax = context->qmin;
59         hb_log( "encavcodec: encoding at constant quantizer %d",
60                 context->qmin );
61     }
62     context->width     = job->width;
63     context->height    = job->height;
64     context->time_base = (AVRational) { job->vrate_base, job->vrate };
65     context->gop_size  = 10 * job->vrate / job->vrate_base;
66     context->pix_fmt   = PIX_FMT_YUV420P;
67
68     if( job->mux & HB_MUX_MP4 )
69     {
70         context->flags |= CODEC_FLAG_GLOBAL_HEADER;
71     }
72     if( job->grayscale )
73     {
74         context->flags |= CODEC_FLAG_GRAY;
75     }
76
77     if( job->pass )
78     {
79         char filename[1024]; memset( filename, 0, 1024 );
80         hb_get_tempory_filename( job->h, filename, "ffmpeg.log" );
81
82         if( job->pass == 1 )
83         {
84             pv->file = fopen( filename, "wb" );
85             context->flags |= CODEC_FLAG_PASS1;
86         }
87         else
88         {
89             int    size;
90             char * log;
91
92             pv->file = fopen( filename, "rb" );
93             fseek( pv->file, 0, SEEK_END );
94             size = ftell( pv->file );
95             fseek( pv->file, 0, SEEK_SET );
96             log = malloc( size + 1 );
97             log[size] = '\0';
98             fread( log, size, 1, pv->file );
99             fclose( pv->file );
100             pv->file = NULL;
101
102             context->flags    |= CODEC_FLAG_PASS2;
103             context->stats_in  = log;
104         }
105     }
106
107     if( avcodec_open( context, codec ) )
108     {
109         hb_log( "hb_work_encavcodec_init: avcodec_open failed" );
110     }
111     pv->context = context;
112
113     if( ( job->mux & HB_MUX_MP4 ) && job->pass != 1 )
114     {
115         /* Hem hem */
116         w->config->mpeg4.length = 15;
117         memcpy( w->config->mpeg4.bytes, context->extradata + 15, 15 );
118     }
119     
120     return 0;
121 }
122
123 /***********************************************************************
124  * Close
125  ***********************************************************************
126  *
127  **********************************************************************/
128 void encavcodecClose( hb_work_object_t * w )
129 {
130     hb_work_private_t * pv = w->private_data;
131
132     if( pv->context )
133     {
134         hb_log( "encavcodec: closing libavcodec" );
135         avcodec_close( pv->context );
136     }
137     if( pv->file )
138     {
139         fclose( pv->file );
140     }
141 }
142
143 /***********************************************************************
144  * Work
145  ***********************************************************************
146  *
147  **********************************************************************/
148 int encavcodecWork( hb_work_object_t * w, hb_buffer_t ** buf_in,
149                     hb_buffer_t ** buf_out )
150 {
151     hb_work_private_t * pv = w->private_data;
152     hb_job_t * job = pv->job;
153     AVFrame  * frame;
154     hb_buffer_t * in = *buf_in, * buf;
155
156     frame              = avcodec_alloc_frame();
157     frame->data[0]     = in->data;
158     frame->data[1]     = frame->data[0] + job->width * job->height;
159     frame->data[2]     = frame->data[1] + job->width * job->height / 4;
160     frame->linesize[0] = job->width;
161     frame->linesize[1] = job->width / 2;
162     frame->linesize[2] = job->width / 2;
163
164     /* Should be way too large */
165     buf = hb_buffer_init( 3 * job->width * job->height / 2 );
166     buf->size = avcodec_encode_video( pv->context, buf->data, buf->alloc,
167                                       frame );
168     buf->start = in->start;
169     buf->stop  = in->stop;
170     buf->key   = pv->context->coded_frame->key_frame;
171
172     av_free( frame );
173
174     if( job->pass == 1 )
175     {
176         /* Write stats */
177         fprintf( pv->file, "%s", pv->context->stats_out );
178     }
179
180     *buf_out = buf;
181
182     return HB_WORK_OK;
183 }
184
185