Re: [FFmpeg-devel] [PATCH 02/20] avformat/matroskaenc: Improve writing Projection

2020-01-27 Thread James Almer
On 12/31/2019 9:58 PM, Andreas Rheinhardt wrote: > The Matroska Projection master element has such a small maximum length > that it can always be written with a length field of length one. > So it is unnecessary to first write the element into a dynamic buffer to > get the accurate length in order

Re: [FFmpeg-devel] [PATCH 02/20] avformat/matroskaenc: Improve writing Projection

2020-01-14 Thread Andreas Rheinhardt
On Wed, Jan 1, 2020 at 1:59 AM Andreas Rheinhardt < andreas.rheinha...@gmail.com> wrote: > The Matroska Projection master element has such a small maximum length > that it can always be written with a length field of length one. > So it is unnecessary to first write the element into a dynamic buff

Re: [FFmpeg-devel] [PATCH 02/20] avformat/matroskaenc: Improve writing Projection

2019-12-31 Thread Andreas Rheinhardt
On Wed, Jan 1, 2020 at 4:53 AM Carl Eugen Hoyos wrote: > Am Mi., 1. Jan. 2020 um 01:59 Uhr schrieb Andreas Rheinhardt > : > > > > The Matroska Projection master element has such a small maximum length > > that it can always be written with a length field of length one. > > So it is unnecessary to

Re: [FFmpeg-devel] [PATCH 02/20] avformat/matroskaenc: Improve writing Projection

2019-12-31 Thread Carl Eugen Hoyos
Am Mi., 1. Jan. 2020 um 01:59 Uhr schrieb Andreas Rheinhardt : > > The Matroska Projection master element has such a small maximum length > that it can always be written with a length field of length one. > So it is unnecessary to first write the element into a dynamic buffer to > get the accurate

[FFmpeg-devel] [PATCH 02/20] avformat/matroskaenc: Improve writing Projection

2019-12-31 Thread Andreas Rheinhardt
The Matroska Projection master element has such a small maximum length that it can always be written with a length field of length one. So it is unnecessary to first write the element into a dynamic buffer to get the accurate length in order not to waste bytes on the length field. Signed-off-by: A