1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Make the struct huffentry public so that global variables

can be declared using it.
This commit is contained in:
Bill Fenner 2003-01-24 02:29:52 +00:00
parent abe63b0e73
commit 859700b4ed
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=73897
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,16 @@
--- codec/encoder-jpeg.cpp.orig Thu Jan 23 18:22:29 2003
+++ codec/encoder-jpeg.cpp Thu Jan 23 18:22:37 2003
@@ -127,12 +127,12 @@
void size(int w, int h);
int consume(const VideoFrame*);
- protected:
struct huffentry {
u_short val;
u_short nb;
};
+ protected:
int command(int argc, const char*const* argv);
int flush(pktbuf* pb, int nbit, pktbuf* npb);

View File

@ -0,0 +1,16 @@
--- codec/encoder-jpeg.cpp.orig Thu Jan 23 18:22:29 2003
+++ codec/encoder-jpeg.cpp Thu Jan 23 18:22:37 2003
@@ -127,12 +127,12 @@
void size(int w, int h);
int consume(const VideoFrame*);
- protected:
struct huffentry {
u_short val;
u_short nb;
};
+ protected:
int command(int argc, const char*const* argv);
int flush(pktbuf* pb, int nbit, pktbuf* npb);