Searched refs:Picture (Results 1 - 20 of 20) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC++/
H A Dmetadata.cpp74 ret = new Picture(object, /*copy=*/false);
95 const Picture *picture = dynamic_cast<const Picture *>(object);
111 return new Picture(*picture);
1026 // Picture
1029 Picture::Picture():
1033 Picture::~Picture()
1036 ::FLAC__StreamMetadata_Picture_Type Picture
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dh264.h193 * Picture parameter set
333 PPS pps; //FIXME move to Picture perhaps? (->no) do we need that?
406 Picture *short_ref[32];
407 Picture *long_ref[32];
408 Picture default_ref_list[2][32]; ///< base reference list for all slices of a coded picture
409 Picture ref_list[2][48]; /**< 0..15: frame refs, 16..47: mbaff field refs.
413 Picture *delayed_pic[MAX_DELAYED_PIC_COUNT+2]; //FIXME size?
H A Dmpegvideo.h79 * Picture.
81 typedef struct Picture{ struct
132 } Picture; typedef in typeref:struct:Picture
244 Picture *picture; ///< main picture buffer
245 Picture **input_picture; ///< next pictures on display order for encoding
246 Picture **reordered_input_picture; ///< pointer to the next pictures in codedorder for encoding
256 Picture last_picture;
262 Picture next_picture;
268 Picture new_picture;
274 Picture current_pictur
[all...]
H A Dcavs.h156 Picture picture; ///< currently decoded frame
157 Picture DPB[2]; ///< reference frames
H A Dh264.c49 * Value of Picture.reference when Picture is not a reference picture, but
82 static Picture * remove_long(H264Context *h, int i, int ref_mask);
922 Picture * const ref1 = &h->ref_list[1][0];
955 Picture * const ref1 = &h->ref_list[1][0];
956 Picture * const cur = s->current_picture_ptr;
1600 static inline void mc_dir_part(H264Context *h, Picture *pic, int n, int square, int chroma_height, int delta, int list,
1675 Picture *ref= &h->ref_list[0][ h->ref_cache[0][ scan8[n] ] ];
1685 Picture *ref= &h->ref_list[1][ h->ref_cache[1][ scan8[n] ] ];
1743 Picture *re
[all...]
H A Dvdpau.c46 Picture *pic;
56 Picture **lp = list ? h->long_ref : h->short_ref;
H A Dmpegvideo.c162 void ff_copy_picture(Picture *dst, Picture *src){
168 * allocates a Picture
171 int alloc_picture(MpegEncContext *s, Picture *pic, int shared){
259 static void free_picture(MpegEncContext *s, Picture *pic){
511 CHECKED_ALLOCZ(s->input_picture, MAX_PICTURE_COUNT * sizeof(Picture*))
512 CHECKED_ALLOCZ(s->reordered_input_picture, MAX_PICTURE_COUNT * sizeof(Picture*))
518 CHECKED_ALLOCZ(s->picture, MAX_PICTURE_COUNT * sizeof(Picture))
882 if( alloc_picture(s, (Picture*)pic, 0) < 0)
885 s->current_picture_ptr= (Picture*)pi
[all...]
H A Dcavs.c327 static inline void mc_dir_part(AVSContext *h,Picture *pic,int square,
397 Picture *ref= &h->DPB[mv->ref];
407 Picture *ref= &h->DPB[0];
H A Dratecontrol.c549 Picture * const pic= &s->current_picture;
678 Picture * const pic= &s->current_picture;
702 Picture *dts_pic;
H A Dmpegvideo_enc.c818 alloc_picture(s, (Picture*)pic, 1);
825 alloc_picture(s, (Picture*)pic, 0);
868 s->input_picture[encoding_delay]= (Picture*)pic;
873 static int skip_check(MpegEncContext *s, Picture *p, Picture *ref){
943 Picture pre_input, *pre_input_ptr= i ? s->input_picture[i-1] : s->next_picture_ptr;
1148 Picture *pic= &s->picture[i];
1179 memset(&s->new_picture, 0, sizeof(Picture));
H A Dcavsdec.c583 memset(&h->picture,0,sizeof(Picture));
H A Dmpegvideo_common.h47 * allocates a Picture
50 int alloc_picture(MpegEncContext *s, Picture *pic, int shared);
H A Dsvq3.c254 const Picture *pic = (dir == 0) ? &s->last_picture : &s->next_picture;
H A Derror_resilience.c683 Picture *pic= s->current_picture_ptr;
H A Dmotion_est.c816 Picture *p= s->current_picture_ptr;
961 Picture * const pic= &s->current_picture;
H A Drv34.c519 Picture *cur_pic = s->current_picture_ptr;
H A Dh263.c292 put_bits(&s->pb,1,0); /* Reference Picture Selection: off */
301 put_bits(&s->pb,1,0); /* Reference Picture Resampling: off */
311 /* Custom Picture Format (CPFMT) */
1068 Picture *pic= s->reordered_input_picture[i+1];
5104 av_log(s->avctx, AV_LOG_ERROR, "Reference Picture Selection not supported\n");
5139 /* Custom Picture Format (CPFMT) */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/include/FLAC++/
H A Dmetadata.h801 class FLACPP_API Picture : public Prototype { class in namespace:FLAC::Metadata
803 Picture();
809 inline Picture(const Picture &object): Prototype(object) { } function in class:FLAC::Metadata::Picture
810 inline Picture(const ::FLAC__StreamMetadata &object): Prototype(object) { } function in class:FLAC::Metadata::Picture
811 inline Picture(const ::FLAC__StreamMetadata *object): Prototype(object) { } function in class:FLAC::Metadata::Picture
817 inline Picture(::FLAC__StreamMetadata *object, bool copy): Prototype(object, copy) { } function in class:FLAC::Metadata::Picture
819 ~Picture();
823 inline Picture &operator=(const Picture
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/test_libFLAC++/
H A Dmetadata_object.cpp1806 printf("testing class FLAC::Metadata::Picture\n");
1808 printf("testing Picture::Picture()... ");
1809 FLAC::Metadata::Picture block;
1828 printf("testing Picture::Picture(const Picture &)... +\n");
1829 printf(" Picture::operator!=(const Picture &)... ");
1831 FLAC::Metadata::Picture blockcop
[all...]
H A Dmetadata_manip.cpp588 FLAC::Metadata::Picture pi(&picture);
762 printf("testing FLAC::Metadata::get_picture(Picture *&)... ");
764 FLAC::Metadata::Picture *picture = 0;
779 printf("testing FLAC::Metadata::get_picture(Picture &)... ");
781 FLAC::Metadata::Picture picture;

Completed in 364 milliseconds