i want to study the theora codec so i am trying to use the "player_example.c" file in the example directory to test the theora codec. i am using ubuntu. but that file can not be compiled with "gcc player_example.c". it ask for several other files such as "vorbis/codec.h, SDL.h". i have no idea about those files, pls help me to use the player_example ......? -- Regards, Janaka Priyadarshana -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/theora-dev/attachments/20070710/829975e8/attachment.htm
Hi, when you did "make", player_example would have been built. You must have already installed the required packages, eg. libsdl-dev, libvorbis-dev also, please install an IRC client, eg. xchat, and join #theora on irc.freenode.net Conrad. On 10/07/07, janaka priyadarshana <rpjanaka@gmail.com> wrote:> i want to study the theora codec so > i am trying to use the "player_example.c" file in the example directory to > test the theora codec. i am using ubuntu. > > but that file can not be compiled with "gcc player_example.c". > it ask for several other files such as "vorbis/codec.h, SDL.h". > > i have no idea about those files, pls help me to use the player_example > ......? > > -- > Regards, > Janaka Priyadarshana > _______________________________________________ > theora-dev mailing list > theora-dev@xiph.org > http://lists.xiph.org/mailman/listinfo/theora-dev > >
i think the makefile is an generated one with some other tool, so it can not simply understand what happen when run the makefile, can u please tell me an easy way to understand the makefile, On 7/10/07, Conrad Parker <conrad@metadecks.org> wrote:> > Hi, > > when you did "make", player_example would have been built. > > You must have already installed the required packages, eg. > libsdl-dev, libvorbis-dev > > also, please install an IRC client, eg. xchat, and join #theora on > irc.freenode.net > > Conrad. > > On 10/07/07, janaka priyadarshana <rpjanaka@gmail.com> wrote: > > i want to study the theora codec so > > i am trying to use the "player_example.c" file in the example directory > to > > test the theora codec. i am using ubuntu. > > > > but that file can not be compiled with "gcc player_example.c". > > it ask for several other files such as "vorbis/codec.h, SDL.h". > > > > i have no idea about those files, pls help me to use the player_example > > ......? > > > > -- > > Regards, > > Janaka Priyadarshana > > _______________________________________________ > > theora-dev mailing list > > theora-dev@xiph.org > > http://lists.xiph.org/mailman/listinfo/theora-dev > > > > >-- Regards, Janaka Priyadarshana -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/theora-dev/attachments/20070711/9f10c987/attachment.html
On Wed, Jul 11, 2007 at 03:43:52PM +0530, janaka priyadarshana wrote:> i think the makefile is an generated one with some other tool, so it can not > simply understand what happen when run the makefile, > can u please tell me an easy way to understand the makefile,Yes, the Makefile is generated by GNU Autotools. Look at the corresponding Makefile.am for an understanding of the inputs and outputs of the build process. -r