theora_publisher.h
Go to the documentation of this file.
00001 /*********************************************************************
00002 * Software License Agreement (BSD License)
00003 * 
00004 *  Copyright (c) 20012, Willow Garage, Inc.
00005 *  All rights reserved.
00006 * 
00007 *  Redistribution and use in source and binary forms, with or without
00008 *  modification, are permitted provided that the following conditions
00009 *  are met:
00010 * 
00011 *   * Redistributions of source code must retain the above copyright
00012 *     notice, this list of conditions and the following disclaimer.
00013 *   * Redistributions in binary form must reproduce the above
00014 *     copyright notice, this list of conditions and the following
00015 *     disclaimer in the documentation and/or other materials provided
00016 *     with the distribution.
00017 *   * Neither the name of the Willow Garage nor the names of its
00018 *     contributors may be used to endorse or promote products derived
00019 *     from this software without specific prior written permission.
00020 * 
00021 *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00022 *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00023 *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00024 *  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00025 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00026 *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00027 *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00028 *  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00029 *  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00030 *  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
00031 *  ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00032 *  POSSIBILITY OF SUCH DAMAGE.
00033 *********************************************************************/
00034 
00035 #include <image_transport/simple_publisher_plugin.h>
00036 #include <cv_bridge/cv_bridge.h>
00037 #include <std_msgs/Header.h>
00038 #include <dynamic_reconfigure/server.h>
00039 #include <theora_image_transport/TheoraPublisherConfig.h>
00040 #include <theora_image_transport/Packet.h>
00041 
00042 #include <theora/codec.h>
00043 #include <theora/theoraenc.h>
00044 #include <theora/theoradec.h>
00045 
00046 namespace theora_image_transport {
00047 
00048 class TheoraPublisher : public image_transport::SimplePublisherPlugin<theora_image_transport::Packet>
00049 {
00050 public:
00051   TheoraPublisher();
00052 
00053   ~TheoraPublisher();
00054   
00055   // Return the system unique string representing the theora transport type
00056   virtual std::string getTransportName() const { return "theora"; }
00057 
00058 protected:
00059   // Overridden to tweak arguments and set up reconfigure server
00060   virtual void advertiseImpl(ros::NodeHandle &nh, const std::string &base_topic, uint32_t queue_size,
00061                              const image_transport::SubscriberStatusCallback  &user_connect_cb,
00062                              const image_transport::SubscriberStatusCallback  &user_disconnect_cb,
00063                              const ros::VoidPtr &tracked_object, bool latch);
00064   
00065   // Callback to send header packets to new clients
00066   virtual void connectCallback(const ros::SingleSubscriberPublisher& pub);
00067 
00068   // Main publish function
00069   virtual void publish(const sensor_msgs::Image& message,
00070                        const PublishFn& publish_fn) const;
00071 
00072   // Dynamic reconfigure support
00073   typedef theora_image_transport::TheoraPublisherConfig Config;
00074   typedef dynamic_reconfigure::Server<Config> ReconfigureServer;
00075   boost::shared_ptr<ReconfigureServer> reconfigure_server_;
00076 
00077   void configCb(Config& config, uint32_t level);
00078 
00079   // Utility functions
00080   bool ensureEncodingContext(const sensor_msgs::Image& image, const PublishFn& publish_fn) const;
00081   void oggPacketToMsg(const std_msgs::Header& header, const ogg_packet &oggpacket,
00082                       theora_image_transport::Packet &msg) const;
00083   void updateKeyframeFrequency() const;
00084 
00085   // Some data is preserved across calls to publish(), but from the user's perspective publish() is
00086   // "logically const"
00087   mutable cv_bridge::CvImage img_image_;
00088   mutable th_info encoder_setup_;
00089   mutable ogg_uint32_t keyframe_frequency_;
00090   mutable boost::shared_ptr<th_enc_ctx> encoding_context_;
00091   mutable std::vector<theora_image_transport::Packet> stream_header_;
00092 };
00093 
00094 } //namespace compressed_image_transport


theora_image_transport
Author(s): Patrick Mihelich, Ethan Dreyfuss
autogenerated on Tue Oct 4 2016 03:52:11