GNU Radio 3.4.2 C++ API
video_sdl_sink_uc.h
Go to the documentation of this file.
00001 /* -*- c++ -*- */
00002 /*
00003  * Copyright 2006 Free Software Foundation, Inc.
00004  * 
00005  * This file is part of GNU Radio
00006  * 
00007  * GNU Radio is free software; you can redistribute it and/or modify
00008  * it under the terms of the GNU General Public License as published by
00009  * the Free Software Foundation; either version 3, or (at your option)
00010  * any later version.
00011  * 
00012  * GNU Radio is distributed in the hope that it will be useful,
00013  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015  * GNU General Public License for more details.
00016  * 
00017  * You should have received a copy of the GNU General Public License
00018  * along with GNU Radio; see the file COPYING.  If not, write to
00019  * the Free Software Foundation, Inc., 51 Franklin Street,
00020  * Boston, MA 02110-1301, USA.
00021  */
00022 
00023 #ifndef INCLUDED_VIDEO_SDL_SINK_UC_H
00024 #define INCLUDED_VIDEO_SDL_SINK_UC_H
00025 
00026 #include <gr_sync_block.h>
00027 #include <string>
00028 #include <SDL.h>
00029 
00030 /*  fourcc (four character code) */
00031 #define vid_fourcc(a,b,c,d) (((unsigned)(a)<<0) | ((unsigned)(b)<<8) | ((unsigned)(c)<<16) | ((unsigned)(d)<<24))
00032 #define IMGFMT_YV12  vid_fourcc('Y','V','1','2') /* 12  YVU 4:2:0 */
00033 
00034 class video_sdl_sink_uc;
00035 typedef boost::shared_ptr<video_sdl_sink_uc> video_sdl_sink_uc_sptr;
00036 
00037 video_sdl_sink_uc_sptr
00038 video_sdl_make_sink_uc (double framerate,int width=640, int height=480,unsigned int format=IMGFMT_YV12,int dst_width=-1,int dst_height=-1);
00039 
00040 /*!
00041  * \brief video sink using SDL
00042  *
00043  * input signature is one, two or three streams of uchar.
00044  * One stream: stream is grey (Y)
00045  * two streems: first is grey (Y), second is alternating U and V
00046  * Three streams: first is grey (Y), second is U, third is V
00047  * Input samples must be in the range [0,255].
00048  */
00049 
00050 class video_sdl_sink_uc : public gr_sync_block {
00051   friend video_sdl_sink_uc_sptr
00052   video_sdl_make_sink_uc (double framerate,int width, int height,unsigned int format,int dst_width,int dst_height);
00053 
00054   int           d_chunk_size;
00055 
00056  protected:
00057   video_sdl_sink_uc (double framerate,int width, int height,unsigned int format,
00058                       int dst_width,int dst_height);
00059   void copy_line_pixel_interleaved(unsigned char *dst_pixels_u,unsigned char *dst_pixels_v,
00060                           const unsigned char * src_pixels,int src_width);
00061   void copy_line_line_interleaved(unsigned char *dst_pixels_u,unsigned char *dst_pixels_v,
00062                           const unsigned char * src_pixels,int src_width);
00063   void copy_line_single_plane(unsigned char *dst_pixels,const unsigned char * src_pixels,int src_width);
00064   void copy_line_single_plane_dec2(unsigned char *dst_pixels,const unsigned char * src_pixels,int src_width);
00065   int copy_plane_to_surface (int plane,int noutput_items,
00066                       const unsigned char * src_pixels);
00067   float d_framerate;
00068   int d_wanted_frametime_ms;
00069   int d_width;
00070   int d_height;
00071   int d_dst_width;
00072   int d_dst_height;
00073   int d_format;
00074   int d_current_line;
00075   SDL_Surface *d_screen;
00076   SDL_Overlay *d_image;
00077   SDL_Rect d_dst_rect;
00078   float d_avg_delay;
00079   unsigned int d_wanted_ticks;
00080 
00081 
00082  public:
00083   ~video_sdl_sink_uc ();
00084   
00085   int work (int noutput_items,
00086                   gr_vector_const_void_star &input_items,
00087                   gr_vector_void_star &output_items);
00088 };
00089 
00090 #endif /* INCLUDED_VIDEO_SDL_SINK_UC_H */