]> git.sesse.net Git - vlc/blobdiff - modules/mux/mpeg/csa.h
FSF address change.
[vlc] / modules / mux / mpeg / csa.h
index 3d71e61024c2b53327d8d0d517d1270ba7179f9a..11c1ccb3383f80b40c5cc742a325e04ffcad63c7 100644 (file)
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
+#ifndef _CSA_H
+#define _CSA_H 1
+
 typedef struct csa_t csa_t;
 #define csa_New     E_(__csa_New)
 #define csa_Delete  E_(__csa_Delete)
@@ -33,6 +36,7 @@ void   csa_Delete( csa_t * );
 
 void   csa_SetCW( csa_t *, uint8_t o_ck[8], uint8_t e_ck[8] );
 
-void   csa_Decrypt( csa_t *, uint8_t *pkt );
-void   csa_Encrypt( csa_t *, uint8_t *pkt, int b_odd );
+void   csa_Decrypt( csa_t *, uint8_t *pkt, int i_pkt_size );
+void   csa_Encrypt( csa_t *, uint8_t *pkt, int i_pkt_size, int b_odd );
 
+#endif /* _CSA_H */