blob: 36892b60ccba13947f570562e30fa2cab4459860 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*
* dpb.h
*
* Created on: 06.12.2008
* Author: julian
*/
#ifndef DPB_H_
#define DPB_H_
#include "nal.h"
#include "video_out.h"
struct decoded_picture {
VdpVideoSurface surface;
vo_frame_t *img; /* this is the image we block, to make sure
* the surface is not double-used */
struct nal_unit *nal;
uint8_t used_for_reference;
struct decoded_picture *next;
};
/* Decoded Picture Buffer */
struct dpb {
struct decoded_picture *pictures;
uint32_t used;
};
struct decoded_picture* init_decoded_picture(struct nal_unit *src_nal,
VdpVideoSurface surface, vo_frame_t *img);
void free_decoded_picture(struct decoded_picture *pic);
struct decoded_picture* dpb_get_picture(struct dpb *dpb, uint32_t picnum);
struct decoded_picture* dpb_get_picture_by_ltpn(struct dpb *dpb, uint32_t longterm_picnum);
struct decoded_picture* dpb_get_picture_by_ltidx(struct dpb *dpb, uint32_t longterm_idx);
int dpb_remove_picture(struct dpb *dpb, uint32_t picnum);
int dpb_remove_picture_by_ltpn(struct dpb *dpb, uint32_t longterm_picnum);
int dpb_remove_picture_by_ltidx(struct dpb *dpb, uint32_t longterm_idx);
int dpb_remove_ltidx_gt(struct dpb *dpb, uint32_t longterm_max);
int dpb_add_picture(struct dpb *dpb, struct decoded_picture *pic, uint32_t num_ref_frames);
int dpb_flush(struct dpb *dpb);
void fill_vdpau_reference_list(struct dpb *dpb, VdpReferenceFrameH264 *reflist);
#endif /* DPB_H_ */
|