1 /*
2 * Copyright (C) 2007 Marco Gerards <marco@gnu.org>
3 * Copyright (C) 2009 David Conrad
4 * Copyright (C) 2011 Jordi Ortiz
5 *
6 * This file is part of FFmpeg.
7 *
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23 /**
24 * @file
25 * Dirac Decoder
26 * @author Marco Gerards <marco@gnu.org>, David Conrad, Jordi Ortiz <nenjordi@gmail.com>
27 */
28
30
36
37 /* defaults for source parameters */
39 { 640, 480, 2, 0, 0, 1, 1, 640, 480, 0, 0, 1, 0 },
40 { 176, 120, 2, 0, 0, 9, 2, 176, 120, 0, 0, 1, 1 },
41 { 176, 144, 2, 0, 1, 10, 3, 176, 144, 0, 0, 1, 2 },
42 { 352, 240, 2, 0, 0, 9, 2, 352, 240, 0, 0, 1, 1 },
43 { 352, 288, 2, 0, 1, 10, 3, 352, 288, 0, 0, 1, 2 },
44 { 704, 480, 2, 0, 0, 9, 2, 704, 480, 0, 0, 1, 1 },
45 { 704, 576, 2, 0, 1, 10, 3, 704, 576, 0, 0, 1, 2 },
46 { 720, 480, 1, 1, 0, 4, 2, 704, 480, 8, 0, 3, 1 },
47 { 720, 576, 1, 1, 1, 3, 3, 704, 576, 8, 0, 3, 2 },
48
49 { 1280, 720, 1, 0, 1, 7, 1, 1280, 720, 0, 0, 3, 3 },
50 { 1280, 720, 1, 0, 1, 6, 1, 1280, 720, 0, 0, 3, 3 },
51 { 1920, 1080, 1, 1, 1, 4, 1, 1920, 1080, 0, 0, 3, 3 },
52 { 1920, 1080, 1, 1, 1, 3, 1, 1920, 1080, 0, 0, 3, 3 },
53 { 1920, 1080, 1, 0, 1, 7, 1, 1920, 1080, 0, 0, 3, 3 },
54 { 1920, 1080, 1, 0, 1, 6, 1, 1920, 1080, 0, 0, 3, 3 },
55 { 2048, 1080, 0, 0, 1, 2, 1, 2048, 1080, 0, 0, 4, 4 },
56 { 4096, 2160, 0, 0, 1, 2, 1, 4096, 2160, 0, 0, 4, 4 },
57
58 { 3840, 2160, 1, 0, 1, 7, 1, 3840, 2160, 0, 0, 3, 3 },
59 { 3840, 2160, 1, 0, 1, 6, 1, 3840, 2160, 0, 0, 3, 3 },
60 { 7680, 4320, 1, 0, 1, 7, 1, 3840, 2160, 0, 0, 3, 3 },
61 { 7680, 4320, 1, 0, 1, 6, 1, 3840, 2160, 0, 0, 3, 3 },
62 };
63
64 /* [DIRAC_STD] Table 10.4 - Available preset pixel aspect ratio values */
66 { 1, 1 },
67 { 10, 11 },
68 { 12, 11 },
69 { 40, 33 },
70 { 16, 11 },
71 { 4, 3 },
72 };
73
74 /* [DIRAC_STD] Values 9,10 of 10.3.5 Frame Rate.
75 * Table 10.3 Available preset frame rate values
76 */
78 { 15000, 1001 },
79 { 25, 2 },
80 };
81
82 /* [DIRAC_STD] This should be equivalent to Table 10.5 Available signal
83 * range presets */
84 static const struct {
92 };
93
98 };
99
100 static const struct {
110 };
111
112 /* [DIRAC_STD] Table 10.2 Supported chroma sampling formats + luma Offset */
116 };
117
118 /* [DIRAC_STD] 10.3 Parse Source Parameters.
119 * source_parameters(base_video_format) */
122 {
124 unsigned luma_depth = 8, luma_offset = 16;
125 int idx;
126 int chroma_x_shift, chroma_y_shift;
127
128 /* [DIRAC_STD] 10.3.2 Frame size. frame_size(video_params) */
129 /* [DIRAC_STD] custom_dimensions_flag */
133 }
134
135 /* [DIRAC_STD] 10.3.3 Chroma Sampling Format.
136 * chroma_sampling_format(video_params) */
137 /* [DIRAC_STD] custom_chroma_format_flag */
139 /* [DIRAC_STD] CHROMA_FORMAT_INDEX */
145 }
146
147 /* [DIRAC_STD] 10.3.4 Scan Format. scan_format(video_params) */
148 /* [DIRAC_STD] custom_scan_format_flag */
150 /* [DIRAC_STD] SOURCE_SAMPLING */
154
155 /* [DIRAC_STD] 10.3.5 Frame Rate. frame_rate(video_params) */
156 if (
get_bits1(gb)) {
/* [DIRAC_STD] custom_frame_rate_flag */
158
161
163 /* [DIRAC_STD] FRAME_RATE_NUMER */
165 /* [DIRAC_STD] FRAME_RATE_DENOM */
167 }
168 }
169 /* [DIRAC_STD] preset_frame_rate(video_params, index) */
173 else
174 /* [DIRAC_STD] Table 10.3 values 9-10 */
176 }
178
179 /* [DIRAC_STD] 10.3.6 Pixel Aspect Ratio.
180 * pixel_aspect_ratio(video_params) */
181 if (
get_bits1(gb)) {
/* [DIRAC_STD] custom_pixel_aspect_ratio_flag */
182 /* [DIRAC_STD] index */
184
187
191 }
192 }
193 /* [DIRAC_STD] Take value from Table 10.4 Available preset pixel
194 * aspect ratio values */
198
199 /* [DIRAC_STD] 10.3.7 Clean area. clean_area(video_params) */
200 if (
get_bits1(gb)) {
/* [DIRAC_STD] custom_clean_area_flag */
201 /* [DIRAC_STD] CLEAN_WIDTH */
203 /* [DIRAC_STD] CLEAN_HEIGHT */
205 /* [DIRAC_STD] CLEAN_LEFT_OFFSET */
207 /* [DIRAC_STD] CLEAN_RIGHT_OFFSET */
209 }
210
211 /* [DIRAC_STD] 10.3.8 Signal range. signal_range(video_params)
212 * WARNING: Some adaptation seems to be done using the
213 * AVCOL_RANGE_MPEG/JPEG values */
214 if (
get_bits1(gb)) {
/* [DIRAC_STD] custom_signal_range_flag */
215 /* [DIRAC_STD] index */
217
220
221 /* This assumes either fullrange or MPEG levels only */
229 }
230 }
231 /* [DIRAC_STD] Table 10.5
232 * Available signal range presets <--> pixel_range_presets */
237 }
238
239 if (luma_depth > 8)
241
244 if ((source->
width % (1<<chroma_x_shift)) || (source->
height % (1<<chroma_y_shift))) {
245 av_log(avctx,
AV_LOG_ERROR,
"Dimensions must be an integer multiple of the chroma subsampling\n");
247 }
248
249
250 /* [DIRAC_STD] 10.3.9 Colour specification. colour_spec(video_params) */
251 if (
get_bits1(gb)) {
/* [DIRAC_STD] custom_colour_spec_flag */
252 /* [DIRAC_STD] index */
254
257
261
263 /* [DIRAC_STD] 10.3.9.1 Colour primaries */
268 }
269 /* [DIRAC_STD] 10.3.9.2 Colour matrix */
272 if (!idx)
274 else if (idx == 1)
276 }
277 /* [DIRAC_STD] 10.3.9.3 Transfer function */
280 }
281 } else {
286 }
287
288 return 0;
289 }
290
291 /* [DIRAC_STD] 10. Sequence Header. sequence_header() */
294 {
295 unsigned version_major;
296 unsigned video_format, picture_coding_mode;
298
299 /* [DIRAC_SPEC] 10.1 Parse Parameters. parse_parameters() */
304 /* [DIRAC_SPEC] sequence_header() -> base_video_format as defined in
305 * 10.2 Base Video Format, table 10.1 Dirac predefined video formats */
307
308 if (version_major < 2)
310 else if (version_major > 2)
312
313 if (video_format > 20
U)
315
316 /* Fill in defaults for the source parameters. */
317 *source = dirac_source_parameters_defaults[video_format];
318
319 /* [DIRAC_STD] 10.3 Source Parameters
320 * Override the defaults. */
323
325 if (ret < 0)
327
329
330 /* [DIRAC_STD] picture_coding_mode shall be 0 for fields and 1 for frames
331 * currently only used to signal field coding */
333 if (picture_coding_mode != 0) {
335 picture_coding_mode);
337 }
338 return 0;
339 }