Mercurial > libavcodec.hg
annotate libschroedingerenc.c @ 10060:965220ebc611 libavcodec
cosmetics: indentation, prettyprinting, K&R coding style
| author | diego |
|---|---|
| date | Sat, 15 Aug 2009 11:42:15 +0000 |
| parents | d18468c5fee0 |
| children | 09f2db2d7c90 |
| rev | line source |
|---|---|
| 6738 | 1 /* |
| 2 * Dirac encoder support via Schroedinger libraries | |
| 3 * Copyright (c) 2008 BBC, Anuradha Suraparaju <asuraparaju at gmail dot com > | |
| 4 * | |
| 5 * This file is part of FFmpeg. | |
| 6 * | |
| 7 * FFmpeg is free software; you can redistribute it and/or | |
| 8 * modify it under the terms of the GNU Lesser General Public | |
| 9 * License as published by the Free Software Foundation; either | |
| 10 * version 2.1 of the License, or (at your option) any later version. | |
| 11 * | |
| 12 * FFmpeg is distributed in the hope that it will be useful, | |
| 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 15 * Lesser General Public License for more details. | |
| 16 * | |
| 17 * You should have received a copy of the GNU Lesser General Public | |
| 18 * License along with FFmpeg; if not, write to the Free Software | |
| 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
| 20 */ | |
| 21 | |
| 22 /** | |
|
8718
e9d9d946f213
Use full internal pathname in doxygen @file directives.
diego
parents:
7839
diff
changeset
|
23 * @file libavcodec/libschroedingerenc.c |
| 6738 | 24 * Dirac encoder support via libschroedinger-1.0 libraries. More details about |
| 25 * the Schroedinger project can be found at http://www.diracvideo.org/. | |
| 26 * The library implements Dirac Specification Version 2.2 | |
| 27 * (http://dirac.sourceforge.net/specification.html). | |
| 28 */ | |
| 29 | |
| 30 #undef NDEBUG | |
| 31 #include <assert.h> | |
| 32 | |
| 33 #include <schroedinger/schro.h> | |
| 34 #include <schroedinger/schrodebug.h> | |
| 35 #include <schroedinger/schrovideoformat.h> | |
| 36 | |
| 37 #include "avcodec.h" | |
| 38 #include "libdirac_libschro.h" | |
| 39 #include "libschroedinger.h" | |
| 40 | |
| 41 | |
| 42 /** libschroedinger encoder private data */ | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
43 typedef struct FfmpegSchroEncoderParams { |
| 6738 | 44 /** Schroedinger video format */ |
| 45 SchroVideoFormat *format; | |
| 46 | |
| 47 /** Schroedinger frame format */ | |
| 48 SchroFrameFormat frame_format; | |
| 49 | |
| 50 /** frame being encoded */ | |
| 51 AVFrame picture; | |
| 52 | |
| 53 /** frame size */ | |
| 54 int frame_size; | |
| 55 | |
| 56 /** Schroedinger encoder handle*/ | |
| 57 SchroEncoder* encoder; | |
| 58 | |
|
7253
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
59 /** buffer to store encoder output before writing it to the frame queue*/ |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
60 unsigned char *enc_buf; |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
61 |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
62 /** Size of encoder buffer*/ |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
63 int enc_buf_size; |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
64 |
| 6738 | 65 /** queue storing encoded frames */ |
| 66 FfmpegDiracSchroQueue enc_frame_queue; | |
| 67 | |
| 68 /** end of sequence signalled */ | |
| 69 int eos_signalled; | |
| 70 | |
| 71 /** end of sequence pulled */ | |
| 72 int eos_pulled; | |
| 73 } FfmpegSchroEncoderParams; | |
| 74 | |
| 75 /** | |
| 76 * Works out Schro-compatible chroma format. | |
| 77 */ | |
| 78 static int SetSchroChromaFormat(AVCodecContext *avccontext) | |
| 79 { | |
| 80 int num_formats = sizeof(ffmpeg_schro_pixel_format_map) / | |
| 81 sizeof(ffmpeg_schro_pixel_format_map[0]); | |
| 82 int idx; | |
| 83 | |
| 84 FfmpegSchroEncoderParams* p_schro_params = avccontext->priv_data; | |
| 85 | |
| 86 for (idx = 0; idx < num_formats; ++idx) { | |
| 87 if (ffmpeg_schro_pixel_format_map[idx].ff_pix_fmt == | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
88 avccontext->pix_fmt) { |
| 6738 | 89 p_schro_params->format->chroma_format = |
| 90 ffmpeg_schro_pixel_format_map[idx].schro_pix_fmt; | |
| 91 return 0; | |
| 92 } | |
| 93 } | |
| 94 | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
95 av_log(avccontext, AV_LOG_ERROR, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
96 "This codec currently only supports planar YUV 4:2:0, 4:2:2" |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
97 " and 4:4:4 formats.\n"); |
| 6738 | 98 |
| 99 return -1; | |
| 100 } | |
| 101 | |
| 102 static int libschroedinger_encode_init(AVCodecContext *avccontext) | |
| 103 { | |
| 104 FfmpegSchroEncoderParams* p_schro_params = avccontext->priv_data; | |
| 105 SchroVideoFormatEnum preset; | |
| 106 | |
| 107 /* Initialize the libraries that libschroedinger depends on. */ | |
| 108 schro_init(); | |
| 109 | |
| 110 /* Create an encoder object. */ | |
| 111 p_schro_params->encoder = schro_encoder_new(); | |
| 112 | |
| 113 if (!p_schro_params->encoder) { | |
| 114 av_log(avccontext, AV_LOG_ERROR, | |
| 115 "Unrecoverable Error: schro_encoder_new failed. "); | |
| 116 return -1; | |
| 117 } | |
| 118 | |
| 119 /* Initialize the format. */ | |
| 120 preset = ff_get_schro_video_format_preset(avccontext); | |
| 121 p_schro_params->format = | |
| 122 schro_encoder_get_video_format(p_schro_params->encoder); | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
123 schro_video_format_set_std_video_format(p_schro_params->format, preset); |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
124 p_schro_params->format->width = avccontext->width; |
| 6738 | 125 p_schro_params->format->height = avccontext->height; |
| 126 | |
| 127 if (SetSchroChromaFormat(avccontext) == -1) | |
| 128 return -1; | |
| 129 | |
| 130 if (ff_get_schro_frame_format(p_schro_params->format->chroma_format, | |
| 131 &p_schro_params->frame_format) == -1) { | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
132 av_log(avccontext, AV_LOG_ERROR, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
133 "This codec currently supports only planar YUV 4:2:0, 4:2:2" |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
134 " and 4:4:4 formats.\n"); |
| 6738 | 135 return -1; |
| 136 } | |
| 137 | |
| 138 p_schro_params->format->frame_rate_numerator = avccontext->time_base.den; | |
| 139 p_schro_params->format->frame_rate_denominator = avccontext->time_base.num; | |
| 140 | |
| 141 p_schro_params->frame_size = avpicture_get_size(avccontext->pix_fmt, | |
| 142 avccontext->width, | |
| 143 avccontext->height); | |
| 144 | |
| 145 avccontext->coded_frame = &p_schro_params->picture; | |
| 146 | |
| 10055 | 147 if (!avccontext->gop_size) { |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
148 schro_encoder_setting_set_double(p_schro_params->encoder, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
149 "gop_structure", |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
150 SCHRO_ENCODER_GOP_INTRA_ONLY); |
|
7839
e6348a5656e0
Add support for creating Simple Profile (I-frame only, no arithmetic coding)
diego
parents:
7253
diff
changeset
|
151 |
|
10056
646065f63290
Remove useless braces around if/for/while expressions.
diego
parents:
10055
diff
changeset
|
152 if (avccontext->coder_type == FF_CODER_TYPE_VLC) |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
153 schro_encoder_setting_set_double(p_schro_params->encoder, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
154 "enable_noarith", 1); |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
155 } else { |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
156 schro_encoder_setting_set_double(p_schro_params->encoder, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
157 "gop_structure", |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
158 SCHRO_ENCODER_GOP_BIREF); |
| 6738 | 159 avccontext->has_b_frames = 1; |
| 160 } | |
| 161 | |
| 162 /* FIXME - Need to handle SCHRO_ENCODER_RATE_CONTROL_LOW_DELAY. */ | |
| 163 if (avccontext->flags & CODEC_FLAG_QSCALE) { | |
| 10055 | 164 if (!avccontext->global_quality) { |
| 6738 | 165 /* lossless coding */ |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
166 schro_encoder_setting_set_double(p_schro_params->encoder, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
167 "rate_control", |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
168 SCHRO_ENCODER_RATE_CONTROL_LOSSLESS); |
| 6738 | 169 } else { |
| 170 int noise_threshold; | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
171 schro_encoder_setting_set_double(p_schro_params->encoder, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
172 "rate_control", |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
173 SCHRO_ENCODER_RATE_CONTROL_CONSTANT_NOISE_THRESHOLD); |
| 6738 | 174 |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
175 noise_threshold = avccontext->global_quality / FF_QP2LAMBDA; |
| 6738 | 176 if (noise_threshold > 100) |
| 177 noise_threshold = 100; | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
178 schro_encoder_setting_set_double(p_schro_params->encoder, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
179 "noise_threshold", |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
180 noise_threshold); |
| 6738 | 181 } |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
182 } else { |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
183 schro_encoder_setting_set_double(p_schro_params->encoder, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
184 "rate_control", |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
185 SCHRO_ENCODER_RATE_CONTROL_CONSTANT_BITRATE); |
| 6738 | 186 |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
187 schro_encoder_setting_set_double(p_schro_params->encoder, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
188 "bitrate", |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
189 avccontext->bit_rate); |
| 6738 | 190 |
| 191 } | |
| 192 | |
|
10056
646065f63290
Remove useless braces around if/for/while expressions.
diego
parents:
10055
diff
changeset
|
193 if (avccontext->flags & CODEC_FLAG_INTERLACED_ME) |
| 6738 | 194 /* All material can be coded as interlaced or progressive |
| 195 irrespective of the type of source material. */ | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
196 schro_encoder_setting_set_double(p_schro_params->encoder, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
197 "interlaced_coding", 1); |
| 6738 | 198 |
| 199 /* FIXME: Signal range hardcoded to 8-bit data until both libschroedinger | |
| 200 * and libdirac support other bit-depth data. */ | |
| 201 schro_video_format_set_std_signal_range(p_schro_params->format, | |
| 202 SCHRO_SIGNAL_RANGE_8BIT_VIDEO); | |
| 203 | |
| 204 /* Set the encoder format. */ | |
| 205 schro_encoder_set_video_format(p_schro_params->encoder, | |
| 206 p_schro_params->format); | |
| 207 | |
| 208 /* Set the debug level. */ | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
209 schro_debug_set_level(avccontext->debug); |
| 6738 | 210 |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
211 schro_encoder_start(p_schro_params->encoder); |
| 6738 | 212 |
| 213 /* Initialize the encoded frame queue. */ | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
214 ff_dirac_schro_queue_init(&p_schro_params->enc_frame_queue); |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
215 return 0; |
| 6738 | 216 } |
| 217 | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
218 static SchroFrame *libschroedinger_frame_from_data(AVCodecContext *avccontext, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
219 void *in_data) |
| 6738 | 220 { |
| 221 FfmpegSchroEncoderParams* p_schro_params = avccontext->priv_data; | |
| 222 SchroFrame *in_frame; | |
| 223 /* Input line size may differ from what the codec supports. Especially | |
| 224 * when transcoding from one format to another. So use avpicture_layout | |
| 225 * to copy the frame. */ | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
226 in_frame = schro_frame_new_and_alloc(NULL, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
227 p_schro_params->frame_format, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
228 p_schro_params->format->width, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
229 p_schro_params->format->height); |
| 6738 | 230 |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
231 avpicture_layout((AVPicture *)in_data, avccontext->pix_fmt, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
232 avccontext->width, avccontext->height, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
233 in_frame->components[0].data, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
234 p_schro_params->frame_size); |
| 6738 | 235 |
| 236 return in_frame; | |
| 237 } | |
| 238 | |
| 239 static void SchroedingerFreeFrame(void *data) | |
| 240 { | |
| 241 FfmpegDiracSchroEncodedFrame *enc_frame = data; | |
| 242 | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
243 av_freep(&(enc_frame->p_encbuf)); |
| 6738 | 244 av_free(enc_frame); |
| 245 } | |
| 246 | |
| 247 static int libschroedinger_encode_frame(AVCodecContext *avccontext, | |
| 248 unsigned char *frame, | |
| 249 int buf_size, void *data) | |
| 250 { | |
| 251 int enc_size = 0; | |
| 252 FfmpegSchroEncoderParams* p_schro_params = avccontext->priv_data; | |
| 253 SchroEncoder *encoder = p_schro_params->encoder; | |
| 254 struct FfmpegDiracSchroEncodedFrame* p_frame_output = NULL; | |
| 255 int go = 1; | |
| 256 SchroBuffer *enc_buf; | |
| 257 int presentation_frame; | |
| 258 int parse_code; | |
|
7253
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
259 int last_frame_in_sequence = 0; |
| 6738 | 260 |
|
10058
d18468c5fee0
Simplify another 'if' condition: Replace 'exp == 0' by '!exp'.
diego
parents:
10056
diff
changeset
|
261 if (!data) { |
| 6738 | 262 /* Push end of sequence if not already signalled. */ |
| 263 if (!p_schro_params->eos_signalled) { | |
| 264 schro_encoder_end_of_stream(encoder); | |
| 265 p_schro_params->eos_signalled = 1; | |
| 266 } | |
| 267 } else { | |
| 268 /* Allocate frame data to schro input buffer. */ | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
269 SchroFrame *in_frame = libschroedinger_frame_from_data(avccontext, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
270 data); |
| 6738 | 271 /* Load next frame. */ |
| 272 schro_encoder_push_frame(encoder, in_frame); | |
| 273 } | |
| 274 | |
| 275 if (p_schro_params->eos_pulled) | |
| 276 go = 0; | |
| 277 | |
| 278 /* Now check to see if we have any output from the encoder. */ | |
| 279 while (go) { | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
280 SchroStateEnum state; |
| 6738 | 281 state = schro_encoder_wait(encoder); |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
282 switch (state) { |
| 6738 | 283 case SCHRO_STATE_HAVE_BUFFER: |
| 284 case SCHRO_STATE_END_OF_STREAM: | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
285 enc_buf = schro_encoder_pull(encoder, &presentation_frame); |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
286 assert(enc_buf->length > 0); |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
287 assert(enc_buf->length <= buf_size); |
|
7253
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
288 parse_code = enc_buf->data[4]; |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
289 |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
290 /* All non-frame data is prepended to actual frame data to |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
291 * be able to set the pts correctly. So we don't write data |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
292 * to the frame output queue until we actually have a frame |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
293 */ |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
294 p_schro_params->enc_buf = av_realloc(p_schro_params->enc_buf, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
295 p_schro_params->enc_buf_size + enc_buf->length); |
|
7253
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
296 |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
297 memcpy(p_schro_params->enc_buf + p_schro_params->enc_buf_size, |
|
7253
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
298 enc_buf->data, enc_buf->length); |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
299 p_schro_params->enc_buf_size += enc_buf->length; |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
300 |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
301 |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
302 if (state == SCHRO_STATE_END_OF_STREAM) { |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
303 p_schro_params->eos_pulled = 1; |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
304 go = 0; |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
305 } |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
306 |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
307 if (!SCHRO_PARSE_CODE_IS_PICTURE(parse_code)) { |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
308 schro_buffer_unref(enc_buf); |
|
7253
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
309 break; |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
310 } |
| 6738 | 311 |
| 312 /* Create output frame. */ | |
| 313 p_frame_output = av_mallocz(sizeof(FfmpegDiracSchroEncodedFrame)); | |
| 314 /* Set output data. */ | |
|
7253
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
315 p_frame_output->size = p_schro_params->enc_buf_size; |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
316 p_frame_output->p_encbuf = p_schro_params->enc_buf; |
| 6738 | 317 if (SCHRO_PARSE_CODE_IS_INTRA(parse_code) && |
|
10056
646065f63290
Remove useless braces around if/for/while expressions.
diego
parents:
10055
diff
changeset
|
318 SCHRO_PARSE_CODE_IS_REFERENCE(parse_code)) |
| 6738 | 319 p_frame_output->key_frame = 1; |
| 320 | |
| 321 /* Parse the coded frame number from the bitstream. Bytes 14 | |
| 322 * through 17 represesent the frame number. */ | |
| 323 p_frame_output->frame_num = (enc_buf->data[13] << 24) + | |
| 324 (enc_buf->data[14] << 16) + | |
| 325 (enc_buf->data[15] << 8) + | |
| 326 enc_buf->data[16]; | |
| 327 | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
328 ff_dirac_schro_queue_push_back(&p_schro_params->enc_frame_queue, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
329 p_frame_output); |
|
7253
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
330 p_schro_params->enc_buf_size = 0; |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
331 p_schro_params->enc_buf = NULL; |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
332 |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
333 schro_buffer_unref(enc_buf); |
| 6738 | 334 |
| 335 break; | |
| 336 | |
| 337 case SCHRO_STATE_NEED_FRAME: | |
| 338 go = 0; | |
| 339 break; | |
| 340 | |
| 341 case SCHRO_STATE_AGAIN: | |
| 342 break; | |
| 343 | |
| 344 default: | |
| 345 av_log(avccontext, AV_LOG_ERROR, "Unknown Schro Encoder state\n"); | |
| 346 return -1; | |
| 347 } | |
| 348 } | |
| 349 | |
| 350 /* Copy 'next' frame in queue. */ | |
|
7253
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
351 |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
352 if (p_schro_params->enc_frame_queue.size == 1 && |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
353 p_schro_params->eos_pulled) |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
354 last_frame_in_sequence = 1; |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
355 |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
356 p_frame_output = ff_dirac_schro_queue_pop(&p_schro_params->enc_frame_queue); |
| 6738 | 357 |
| 10055 | 358 if (!p_frame_output) |
| 6738 | 359 return 0; |
| 360 | |
| 361 memcpy(frame, p_frame_output->p_encbuf, p_frame_output->size); | |
| 362 avccontext->coded_frame->key_frame = p_frame_output->key_frame; | |
| 363 /* Use the frame number of the encoded frame as the pts. It is OK to | |
| 364 * do so since Dirac is a constant frame rate codec. It expects input | |
| 365 * to be of constant frame rate. */ | |
| 366 avccontext->coded_frame->pts = p_frame_output->frame_num; | |
| 367 enc_size = p_frame_output->size; | |
| 368 | |
|
7253
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
369 /* Append the end of sequence information to the last frame in the |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
370 * sequence. */ |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
371 if (last_frame_in_sequence && p_schro_params->enc_buf_size > 0) { |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
372 memcpy(frame + enc_size, p_schro_params->enc_buf, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
373 p_schro_params->enc_buf_size); |
|
7253
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
374 enc_size += p_schro_params->enc_buf_size; |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
375 av_freep(&p_schro_params->enc_buf); |
|
7253
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
376 p_schro_params->enc_buf_size = 0; |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
377 } |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
378 |
| 6738 | 379 /* free frame */ |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
380 SchroedingerFreeFrame(p_frame_output); |
| 6738 | 381 |
| 382 return enc_size; | |
| 383 } | |
| 384 | |
| 385 | |
| 386 static int libschroedinger_encode_close(AVCodecContext *avccontext) | |
| 387 { | |
| 388 | |
| 389 FfmpegSchroEncoderParams* p_schro_params = avccontext->priv_data; | |
| 390 | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
391 /* Close the encoder. */ |
| 6738 | 392 schro_encoder_free(p_schro_params->encoder); |
| 393 | |
| 394 /* Free data in the output frame queue. */ | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
395 ff_dirac_schro_queue_free(&p_schro_params->enc_frame_queue, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
396 SchroedingerFreeFrame); |
| 6738 | 397 |
|
7253
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
398 |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
399 /* Free the encoder buffer. */ |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
400 if (p_schro_params->enc_buf_size) |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
401 av_freep(&p_schro_params->enc_buf); |
|
2f5b98d0aa13
Fix pts handling when encoding with libschroedinger, closes issue 453.
diego
parents:
7040
diff
changeset
|
402 |
| 6738 | 403 /* Free the video format structure. */ |
| 404 av_freep(&p_schro_params->format); | |
| 405 | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
406 return 0; |
| 6738 | 407 } |
| 408 | |
| 409 | |
| 410 AVCodec libschroedinger_encoder = { | |
| 411 "libschroedinger", | |
| 412 CODEC_TYPE_VIDEO, | |
| 413 CODEC_ID_DIRAC, | |
| 414 sizeof(FfmpegSchroEncoderParams), | |
| 415 libschroedinger_encode_init, | |
| 416 libschroedinger_encode_frame, | |
| 417 libschroedinger_encode_close, | |
|
10060
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
418 .capabilities = CODEC_CAP_DELAY, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
419 .pix_fmts = (enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_YUV422P, PIX_FMT_YUV444P, PIX_FMT_NONE}, |
|
965220ebc611
cosmetics: indentation, prettyprinting, K&R coding style
diego
parents:
10058
diff
changeset
|
420 .long_name = NULL_IF_CONFIG_SMALL("libschroedinger Dirac 2.2"), |
| 6738 | 421 }; |
