Marton Balint
98f6c59f4f
avformat/electronicarts: add option to return alpha channel in the main video stream in VP6A codec
...
VP6 alpha in EA format is a second VP6 encoded video stream where only the Y
component is used and is interpreted as the alpha channel of the first VP6
stream. The alpha VP6 stream is muxed separately from the main VP6 stream, has
its own stream headers and packet headers. In theory the two streams might not
even have the same resolution (although most likely that is not something that
is seen or supported in the wild), but the format is capable of doing it.
Merged VP6 alpha (also known as the VP6A codec) means that a packet of the
video stream contains the corresponding packet of both VP6 substreams like
this:
{OffsetOfAlpha, DataPacket, AlphaDataPacket}
So data and alpha data of a frame is merged to a single packet, this is how VP6
video with alpha is muxed in FLV and SWF.
The first approach is more like how the demuxer sees data in the EA format,
unfortunately it is different to what the FLV or SWF format expects, so -
having no better place for it in the framework - I decided to do an optional
format conversion in the EA demuxer.
Signed-off-by: Marton Balint <cus@passwd.hu>
2022-11-22 22:59:51 +01:00
..
2022-11-03 21:16:10 +10:00
2022-03-23 23:45:39 +01:00
2022-05-10 07:37:38 +02:00
2022-07-12 21:55:22 +02:00
2022-08-08 16:19:38 +02:00
2022-05-10 07:45:58 +02:00
2022-05-26 11:54:05 +02:00
2022-10-02 20:16:42 +02:00
2022-05-10 07:45:58 +02:00
2022-09-22 17:44:05 +02:00
2022-05-10 07:45:58 +02:00
2022-09-23 20:27:35 +02:00
2022-03-27 11:58:54 +02:00
2022-03-16 14:12:49 +02:00
2022-03-15 09:42:30 -03:00
2022-05-10 07:45:58 +02:00
2022-09-23 20:27:35 +02:00
2022-05-10 07:45:58 +02:00
2022-09-24 17:57:35 +02:00
2022-05-10 07:42:22 +02:00
2022-09-24 17:57:35 +02:00
2022-07-09 19:37:52 +02:00
2022-07-09 19:37:53 +02:00
2022-09-19 17:05:33 +02:00
2022-03-27 11:59:52 +02:00
2022-03-16 14:12:49 +02:00
2022-10-28 09:08:00 +02:00
2022-05-10 07:46:57 +02:00
2022-05-10 07:46:57 +02:00
2022-07-23 22:53:29 +02:00
2022-07-21 19:27:32 +02:00
2022-10-20 21:42:20 +02:00
2022-09-26 03:02:50 +02:00
2022-03-15 09:42:30 -03:00
2022-03-15 09:42:30 -03:00
2022-10-24 02:00:31 +02:00
2022-03-16 14:12:49 +02:00
2022-05-13 12:45:17 +05:30
2022-05-13 12:45:17 +05:30
2022-09-26 03:02:50 +02:00
2022-08-12 18:54:19 +02:00
2022-10-17 09:51:47 +02:00
2022-09-24 14:03:59 +02:00
2022-07-12 21:55:22 +02:00
2022-10-03 23:21:57 +02:00
2022-10-17 09:56:47 +02:00
2022-10-04 18:01:01 +02:00
2022-09-04 15:03:32 -04:00
2022-03-15 09:42:30 -03:00
2022-03-15 09:42:30 -03:00
2022-06-09 20:46:10 +02:00
2022-05-10 07:45:58 +02:00
2022-03-15 09:42:30 -03:00
2022-07-03 11:41:23 +02:00
2022-03-16 14:12:49 +02:00
2022-03-15 09:42:31 -03:00
2022-03-17 16:52:08 -03:00
2022-09-16 17:49:40 +02:00
2022-05-10 07:37:38 +02:00
2022-09-03 15:41:44 +02:00
2022-07-05 14:11:20 +02:00
2022-09-24 17:57:36 +02:00
2022-09-24 12:16:15 -03:00
2022-05-08 10:50:30 +08:00
2022-03-15 09:42:31 -03:00
2022-03-23 23:45:39 +01:00
2022-07-07 21:52:52 +02:00
2022-04-09 21:05:18 +02:00
2022-03-16 14:12:49 +02:00
2022-11-17 10:53:20 -03:00
2022-09-22 15:34:54 +02:00
2022-11-17 10:05:49 -03:00
2022-03-15 09:42:31 -03:00
2022-03-15 09:42:31 -03:00
2022-03-15 09:42:31 -03:00
2022-05-10 07:49:01 +02:00
2022-09-26 03:02:50 +02:00
2022-05-12 08:52:59 +02:00
2022-03-15 09:42:31 -03:00
2022-03-22 08:45:38 -03:00
2022-09-24 17:57:36 +02:00
2022-03-15 09:42:31 -03:00
2022-03-15 09:42:31 -03:00
2022-03-15 09:42:31 -03:00
2022-03-15 09:42:31 -03:00
2022-09-26 03:02:50 +02:00
2022-09-05 08:13:57 +02:00
2022-09-05 08:00:57 +02:00
2022-09-05 08:10:26 +02:00
2022-09-24 17:57:37 +02:00
2022-03-15 09:42:31 -03:00
2022-11-22 22:59:51 +01:00
2022-03-15 09:42:32 -03:00
2022-05-10 07:42:07 +02:00
2022-10-24 02:00:31 +02:00
2022-09-03 15:41:44 +02:00
2022-04-28 02:39:37 +02:00
2022-05-10 07:42:22 +02:00
2022-09-26 03:02:50 +02:00
2022-03-16 14:05:26 +02:00
2022-03-23 23:45:39 +01:00
2022-03-15 09:42:32 -03:00
2022-09-24 18:27:43 +02:00
2022-09-26 03:02:50 +02:00
2022-04-28 02:40:49 +02:00
2022-03-16 14:05:26 +02:00
2022-03-23 23:45:39 +01:00
2022-03-15 09:42:32 -03:00
2022-03-15 09:42:32 -03:00
2022-03-15 09:42:33 -03:00
2022-03-15 09:42:33 -03:00
2022-03-16 14:12:49 +02:00
2022-03-15 09:42:33 -03:00
2022-03-15 09:42:33 -03:00
2022-09-24 17:57:37 +02:00
2022-07-09 19:37:53 +02:00
2022-03-16 14:12:49 +02:00
2022-03-15 09:42:33 -03:00
2022-05-10 07:49:01 +02:00
2022-05-10 07:27:01 +02:00
2022-03-23 23:45:39 +01:00
2022-03-16 14:12:49 +02:00
2022-03-15 09:42:33 -03:00
2022-03-15 09:42:33 -03:00
2022-05-10 07:27:01 +02:00
2022-10-23 20:45:25 +02:00
2022-05-15 18:13:56 +02:00
2022-03-23 23:45:39 +01:00
2022-10-20 16:27:06 +05:30
2022-09-26 03:02:50 +02:00
2022-06-24 23:07:33 -03:00
2022-05-12 11:31:38 +08:00
2022-09-22 17:44:05 +02:00
2022-05-10 07:42:07 +02:00
2022-05-10 07:30:31 +02:00
2022-05-10 07:37:38 +02:00
2022-03-15 09:42:33 -03:00
2022-08-28 22:06:44 +02:00
2022-09-03 15:41:44 +02:00
2022-03-16 14:12:49 +02:00
2022-11-03 21:16:10 +10:00
2022-11-03 21:16:03 +10:00
2022-11-03 21:16:03 +10:00
2022-08-07 19:18:18 +10:00
2022-07-16 22:40:44 +02:00
2022-08-07 19:18:18 +10:00
2022-03-15 09:42:33 -03:00
2022-09-26 03:02:50 +02:00
2022-09-03 15:41:44 +02:00
2022-05-10 07:42:46 +02:00
2022-03-15 09:42:33 -03:00
2022-03-15 09:42:33 -03:00
2022-09-30 19:11:36 +02:00
2022-08-08 16:19:38 +02:00
2022-09-21 13:58:40 +08:00
2022-03-15 09:42:33 -03:00
2022-05-10 07:27:36 +02:00
2022-09-24 17:57:37 +02:00
2022-05-26 11:54:05 +02:00
2022-04-23 19:51:46 +02:00
2022-05-06 15:57:45 +02:00
2022-03-16 14:12:49 +02:00
2022-09-16 10:02:19 +02:00
2022-10-02 20:16:42 +02:00
2022-03-15 09:42:34 -03:00
2022-03-15 09:42:34 -03:00
2022-03-15 09:42:34 -03:00
2022-06-18 16:32:23 +02:00
2022-04-19 23:19:16 +03:00
2022-03-30 10:30:02 +08:00
2022-05-06 15:57:45 +02:00
2022-07-23 19:01:44 +02:00
2022-03-15 09:42:34 -03:00
2022-05-12 08:52:59 +02:00
2022-09-23 20:27:35 +02:00
2022-09-26 03:02:27 +02:00
2022-09-26 03:02:50 +02:00
2022-05-10 07:37:38 +02:00
2022-10-21 21:12:45 +02:00
2022-07-03 11:41:23 +02:00
2022-05-10 07:37:38 +02:00
2022-03-15 09:42:34 -03:00
2022-03-16 14:12:49 +02:00
2022-05-10 07:46:57 +02:00
2022-03-15 09:42:34 -03:00
2022-10-30 16:46:48 -03:00
2022-04-05 09:19:59 -03:00
2022-09-21 13:58:40 +08:00
2022-11-17 10:05:49 -03:00
2022-07-09 19:37:53 +02:00
2022-07-09 19:37:53 +02:00
2022-10-08 22:56:30 +08:00
2022-03-15 09:42:34 -03:00
2022-07-21 19:28:52 +02:00
2022-05-10 07:45:58 +02:00
2022-05-10 07:37:38 +02:00
2022-07-04 14:56:43 +02:00
2022-09-26 03:02:50 +02:00
2022-10-08 22:55:31 +08:00
2022-03-15 09:42:35 -03:00
2022-03-15 09:42:35 -03:00
2022-03-15 09:42:35 -03:00
2022-09-03 15:41:44 +02:00
2022-10-27 15:32:37 +02:00
2022-08-12 18:54:19 +02:00
2022-03-15 09:42:35 -03:00
2022-03-15 09:42:35 -03:00
2022-08-07 22:01:21 +02:00
2022-08-07 22:01:21 +02:00
2022-10-06 10:23:39 +02:00
2022-09-26 03:02:50 +02:00
2022-03-15 09:42:35 -03:00
2022-03-16 14:12:49 +02:00
2022-03-15 09:42:35 -03:00
2022-03-15 09:42:35 -03:00
2022-03-15 09:42:35 -03:00
2022-05-10 07:27:01 +02:00
2022-09-25 14:56:03 +02:00
2022-05-10 07:30:31 +02:00
2022-05-10 07:45:58 +02:00
2022-05-10 07:37:38 +02:00
2022-05-10 07:37:38 +02:00
2022-07-09 19:37:53 +02:00
2022-03-15 09:42:35 -03:00
2022-09-26 03:02:50 +02:00
2022-03-15 09:42:35 -03:00
2022-03-15 09:42:35 -03:00
2022-03-23 23:45:39 +01:00
2022-03-23 23:45:39 +01:00
2022-05-10 07:42:07 +02:00
2022-03-15 09:42:35 -03:00
2022-03-15 09:42:35 -03:00
2022-03-15 09:42:35 -03:00
2022-05-10 07:49:19 +02:00
2022-08-24 03:43:52 +02:00
2022-03-15 09:42:35 -03:00
2022-03-15 09:42:36 -03:00
2022-03-22 08:45:38 -03:00
2022-03-16 14:12:49 +02:00
2022-03-15 09:42:36 -03:00
2022-03-15 09:42:36 -03:00
2022-08-03 21:18:25 +02:00
2022-03-15 09:42:36 -03:00
2022-03-15 09:42:36 -03:00
2022-03-15 09:42:36 -03:00
2022-03-15 09:42:36 -03:00
2022-09-26 03:02:50 +02:00
2022-08-08 16:19:38 +02:00
2022-05-10 07:29:32 +02:00
2022-05-10 07:29:32 +02:00
2022-03-16 14:12:49 +02:00
2022-03-15 09:42:36 -03:00
2022-11-04 22:44:16 +01:00
2022-10-18 13:20:37 +11:00
2022-09-20 18:58:23 -03:00
2022-09-26 03:02:50 +02:00
2022-05-10 07:45:58 +02:00
2022-09-24 18:28:19 +02:00
2022-03-15 09:42:36 -03:00
2022-09-24 18:29:08 +02:00
2022-05-10 07:45:58 +02:00
2022-03-15 09:42:36 -03:00
2022-03-15 09:42:36 -03:00
2022-04-22 22:06:04 +02:00
2022-03-15 09:42:36 -03:00
2022-03-15 09:42:36 -03:00
2022-05-10 07:37:38 +02:00
2022-03-23 23:45:39 +01:00
2022-03-23 23:45:39 +01:00
2022-03-23 23:45:39 +01:00
2022-03-15 09:42:36 -03:00
2022-03-26 00:42:00 +02:00
2022-03-15 09:42:36 -03:00
2022-09-26 03:02:50 +02:00
2022-04-27 20:47:59 +08:00
2022-03-16 14:12:49 +02:00
2022-05-10 07:27:01 +02:00
2022-05-10 07:27:01 +02:00
2022-09-24 18:28:41 +02:00
2022-05-19 21:17:31 +08:00
2022-03-15 09:42:37 -03:00
2022-07-07 21:52:52 +02:00
2022-08-31 16:24:22 +02:00
2022-03-15 09:42:37 -03:00
2022-09-24 18:28:51 +02:00
2022-03-15 09:42:37 -03:00
2022-09-26 03:02:50 +02:00
2022-03-15 09:42:37 -03:00
2022-05-10 07:29:15 +02:00
2022-08-12 18:54:19 +02:00
2022-11-03 16:59:18 +01:00
2022-03-15 09:42:37 -03:00
2022-03-15 09:42:37 -03:00
2022-03-15 09:42:37 -03:00
2022-05-12 08:52:59 +02:00
2022-03-15 09:42:37 -03:00
2022-05-10 07:30:31 +02:00
2022-06-12 18:34:37 +10:00
2022-03-15 09:42:37 -03:00
2022-03-15 09:42:37 -03:00
2022-03-15 09:42:37 -03:00
2022-03-15 09:42:37 -03:00
2022-09-24 18:29:32 +02:00
2022-09-20 18:32:28 +02:00
2022-08-23 20:03:03 +02:00
2022-07-04 14:56:43 +02:00
2022-03-15 09:42:37 -03:00
2022-03-15 09:42:37 -03:00
2022-05-10 07:42:46 +02:00
2022-07-09 19:37:53 +02:00
2022-03-15 09:42:38 -03:00
2022-08-12 18:54:19 +02:00
2022-03-15 09:42:38 -03:00
2022-03-15 09:42:38 -03:00
2022-06-08 23:09:47 +02:00
2022-04-27 18:43:01 +02:00
2022-03-23 23:45:39 +01:00
2022-06-21 13:27:46 +03:00
2022-03-15 09:42:38 -03:00
2022-03-15 09:42:38 -03:00
2022-03-15 09:42:38 -03:00
2022-07-31 04:57:23 +02:00
2022-10-24 02:00:31 +02:00
2022-05-10 07:27:01 +02:00
2022-05-10 07:49:19 +02:00
2022-03-15 09:42:38 -03:00
2022-05-10 07:45:58 +02:00
2022-10-03 23:21:57 +02:00
2022-05-10 06:49:32 +02:00
2022-11-22 22:59:51 +01:00
2022-10-04 23:47:54 +02:00
2022-03-15 09:42:38 -03:00
2022-03-15 09:42:38 -03:00
2022-03-16 14:12:49 +02:00
2022-03-15 09:42:38 -03:00
2022-11-17 10:05:49 -03:00
2022-11-17 10:05:49 -03:00
2022-05-10 07:37:38 +02:00
2022-03-15 09:42:38 -03:00
2022-08-24 10:45:33 +08:00
2022-03-16 14:12:49 +02:00
2022-03-15 09:42:38 -03:00
2022-09-05 20:36:22 +02:00
2022-04-07 21:57:42 -03:00
2022-03-15 09:42:38 -03:00
2022-03-15 09:42:38 -03:00
2022-05-10 07:45:58 +02:00
2022-03-15 09:42:39 -03:00
2022-05-10 07:37:38 +02:00
2022-05-10 07:30:31 +02:00
2022-03-15 09:42:38 -03:00
2022-03-15 09:42:39 -03:00
2022-03-15 09:42:38 -03:00
2022-03-15 09:42:39 -03:00
2022-03-15 09:42:39 -03:00
2022-09-24 18:28:57 +02:00
2022-05-10 07:45:58 +02:00
2022-10-21 20:11:14 +02:00