Re: [FFmpeg-devel] [PATCH 1/2] lavd/avdevice: replace av_ with ff_ for caps option table

2014-12-13 Thread Lukasz Marek
On 13.12.2014 20:54, Lukasz Marek wrote: On 13.12.2014 20:48, Reimar Döffinger wrote: On 13.12.2014, at 20:42, James Almer wrote: On 13/12/14 4:27 PM, Lukasz Marek wrote: This symbol is required for query capabilities callbacks. This symbol is only required by libavdevice and should not be ex

Re: [FFmpeg-devel] [PATCH 1/2] lavd/avdevice: replace av_ with ff_ for caps option table

2014-12-13 Thread Lukasz Marek
On 13.12.2014 20:48, Reimar Döffinger wrote: On 13.12.2014, at 20:42, James Almer wrote: On 13/12/14 4:27 PM, Lukasz Marek wrote: This symbol is required for query capabilities callbacks. This symbol is only required by libavdevice and should not be exported. This need a deprecation and an F

Re: [FFmpeg-devel] [PATCH 1/2] lavd/avdevice: replace av_ with ff_ for caps option table

2014-12-13 Thread Reimar Döffinger
On 13.12.2014, at 20:42, James Almer wrote: > On 13/12/14 4:27 PM, Lukasz Marek wrote: >> This symbol is required for query capabilities callbacks. >> This symbol is only required by libavdevice and should not be exported. > > This need a deprecation and an FF_API scheduled removal. We can't remo

Re: [FFmpeg-devel] [PATCH 1/2] lavd/avdevice: replace av_ with ff_ for caps option table

2014-12-13 Thread James Almer
On 13/12/14 4:27 PM, Lukasz Marek wrote: > This symbol is required for query capabilities callbacks. > This symbol is only required by libavdevice and should not be exported. This need a deprecation and an FF_API scheduled removal. We can't remove the symbol without a major bump. Also, an inter

[FFmpeg-devel] [PATCH 1/2] lavd/avdevice: replace av_ with ff_ for caps option table

2014-12-13 Thread Lukasz Marek
This symbol is required for query capabilities callbacks. This symbol is only required by libavdevice and should not be exported. Signed-off-by: Lukasz Marek --- libavdevice/avdevice.c | 2 +- libavdevice/avdevice.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavdevi