Re: [FFmpeg-devel] [PATCH] avcodec/Makefile: Fix opus parser dependency.

2017-12-09 Thread Michael Niedermayer
On Fri, Dec 08, 2017 at 11:35:06AM -0800, Jacob Trimble wrote: > On Fri, Dec 8, 2017 at 10:39 AM, Michael Niedermayer > wrote: > > On Thu, Dec 07, 2017 at 11:30:13AM -0800, Jacob Trimble wrote: > >> The opus.c file uses variables that are defined in opustab.c. The > >> opus parser needs to includ

Re: [FFmpeg-devel] [PATCH] avcodec/Makefile: Fix opus parser dependency.

2017-12-08 Thread Jacob Trimble
On Fri, Dec 8, 2017 at 10:39 AM, Michael Niedermayer wrote: > On Thu, Dec 07, 2017 at 11:30:13AM -0800, Jacob Trimble wrote: >> The opus.c file uses variables that are defined in opustab.c. The >> opus parser needs to include that file to avoid linker errors when >> not including the opus encoder

Re: [FFmpeg-devel] [PATCH] avcodec/Makefile: Fix opus parser dependency.

2017-12-08 Thread Michael Niedermayer
On Thu, Dec 07, 2017 at 11:30:13AM -0800, Jacob Trimble wrote: > The opus.c file uses variables that are defined in opustab.c. The > opus parser needs to include that file to avoid linker errors when > not including the opus encoder/decoder. please list the symbols needed or the error message in

[FFmpeg-devel] [PATCH] avcodec/Makefile: Fix opus parser dependency.

2017-12-07 Thread Jacob Trimble
The opus.c file uses variables that are defined in opustab.c. The opus parser needs to include that file to avoid linker errors when not including the opus encoder/decoder. Signed-off-by: Jacob Trimble --- libavcodec/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/l