~ubuntu-branches/ubuntu/wily/libde265/wily

« back to all changes in this revision

Viewing changes to libde265/sei.h

  • Committer: Package Import Robot
  • Author(s): Joachim Bauch
  • Date: 2015-07-16 11:07:46 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20150716110746-76vsv24j3yux7tnu
Tags: 1.0.2-1
* Imported Upstream version 1.0.2
* Added new files to copyright information.
* Only export decoder API and update symbols for new version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
} sei_decoded_picture_hash;
70
70
 
71
71
 
72
 
struct sei_message {
 
72
typedef struct {
73
73
  enum sei_payload_type payload_type;
74
74
  int payload_size;
75
75
 
76
76
  union {
77
77
    sei_decoded_picture_hash decoded_picture_hash;
78
78
  } data;
79
 
};
80
 
 
 
79
} sei_message;
81
80
 
82
81
class seq_parameter_set;
83
82
 
85
84
 
86
85
de265_error read_sei(bitreader* reader, sei_message*, bool suffix, const seq_parameter_set* sps);
87
86
void dump_sei(const sei_message*, const seq_parameter_set* sps);
88
 
de265_error process_sei(const sei_message*, class de265_image* img);
 
87
de265_error process_sei(const sei_message*, struct de265_image* img);
89
88
 
90
89
#endif