[FFmpeg-devel] [PATCH][VAAPI][2/6] Add common data structures and helpers

Gwenole Beauchesne gbeauchesne
Fri Feb 27 13:11:37 CET 2009


On Fri, 27 Feb 2009, Reimar D?ffinger wrote:

> The purpose of get_buffer is to use a buffer provided by the application
> and let the application do its own buffer management however it wants
> to.
> Now, the problem why you want to do it this way seems to be that the
> application otherwise would need a callback to FFmpeg to allocate
> hwaccel_data.
> The question is, why is that needed? The reason seems to be
> "struct vaapi_render_state_private" which the application can not
> allocate itself.

You can see that vaapi_render_state_private as vdpau_render_state. 
Currently, the application allocates those. But Michael wanted lavc to 
handle that itself, so I was only suggesting patches to achieve this. 
Since this yields mess, in your opinion, it's probably not a good idea 
then. i.e. let's just stick to the current approach: have the application 
allocate the *_render_state structs.

> Is this data in vaapi_render_state_private so very much
> performance-critical that it absolutely must extend struct vaapi_render_state?
> There could be a pointer to it in a "libavcodec-private" part of AVFrame and
> there would be no issue at all because it is nothing the user ever needs to care about.
> Or it could be a pointer in struct vaapi_render_state, though then you
> can initialize it only _after_ calling get_buffer.

And when/how the deallocation of the struct could be scheduled? You are 
not guaranteed to no longer need the data after ::end_frame() since what 
ff_draw_horiz_band() sends is not necessarily the surface that was just 
rendered. So this has to be postponed to at least ::release_buffer().

>>> My question was why does the field _exist_ _at all_ in
>>> vaapi_render_state, not why does the application allocate it.
>>> I see that I was wrong though and VDPAU actually "needs" it because it
>>> does the reference frame tracking directly with the surfaces and not the
>>> AVFrames, and presumably it is the same with VAAPI. Well, I guess it
>>> saves a bit of code in the user applications.
>>
>> Yes, how could an HW accelerator do reference frames tracking otherwise
>> since it doesn't know about AVFrames?
>
> Well, the application could fill out (that part of) the info structs.
> No, I don't claim that it's a good idea.

This doesn't make sense. The application does not necessarily have access 
to other Picture to retrieve the surface id back. Neither does it want to 
duplicate the algorithms to perform this task.



More information about the ffmpeg-devel mailing list