Version_script-enc 814 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #
  2. # Export file for libtheora
  3. #
  4. # Only the symbols listed in the global section will be callable from
  5. # applications linking to the libraries.
  6. #
  7. # The 1.x encoder API
  8. libtheoraenc_1.0
  9. {
  10. global:
  11. th_encode_alloc;
  12. th_encode_ctl;
  13. th_encode_flushheader;
  14. th_encode_ycbcr_in;
  15. th_encode_packetout;
  16. th_encode_free;
  17. TH_VP31_QUANT_INFO;
  18. TH_VP31_HUFF_CODES;
  19. local:
  20. *;
  21. };
  22. # The encoder portion of the deprecated alpha release api.
  23. # We use something that looks like a versioned so filename here
  24. # to define the old API because of a historical confusion. This
  25. # label must be kept to maintain ABI compatibility.
  26. libtheora.so.1.0
  27. {
  28. global:
  29. theora_encode_init;
  30. theora_encode_YUVin;
  31. theora_encode_packetout;
  32. theora_encode_header;
  33. theora_encode_comment;
  34. theora_encode_tables;
  35. local:
  36. *;
  37. };