fbdev_enc.c 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. /*
  2. * Copyright (c) 2013 Lukasz Marek
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <unistd.h>
  21. #include <fcntl.h>
  22. #include <sys/ioctl.h>
  23. #include <sys/mman.h>
  24. #include <linux/fb.h>
  25. #include "libavutil/pixdesc.h"
  26. #include "libavutil/log.h"
  27. #include "libavutil/mem.h"
  28. #include "libavutil/opt.h"
  29. #include "libavformat/avformat.h"
  30. #include "fbdev_common.h"
  31. typedef struct {
  32. AVClass *class; ///< class for private options
  33. int xoffset; ///< x coordinate of top left corner
  34. int yoffset; ///< y coordinate of top left corner
  35. struct fb_var_screeninfo varinfo; ///< framebuffer variable info
  36. struct fb_fix_screeninfo fixinfo; ///< framebuffer fixed info
  37. int fd; ///< framebuffer device file descriptor
  38. int index; ///< index of a video stream
  39. uint8_t *data; ///< framebuffer data
  40. } FBDevContext;
  41. static av_cold int fbdev_write_header(AVFormatContext *h)
  42. {
  43. FBDevContext *fbdev = h->priv_data;
  44. enum AVPixelFormat pix_fmt;
  45. AVStream *st = NULL;
  46. int ret, flags = O_RDWR;
  47. for (int i = 0; i < h->nb_streams; i++) {
  48. if (h->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
  49. if (!st) {
  50. fbdev->index = i;
  51. st = h->streams[i];
  52. } else {
  53. av_log(h, AV_LOG_WARNING, "More than one video stream found. First one is used.\n");
  54. break;
  55. }
  56. }
  57. }
  58. if (!st) {
  59. av_log(h, AV_LOG_ERROR, "No video stream found.\n");
  60. return AVERROR(EINVAL);
  61. }
  62. if ((fbdev->fd = avpriv_open(h->filename, flags)) == -1) {
  63. ret = AVERROR(errno);
  64. av_log(h, AV_LOG_ERROR,
  65. "Could not open framebuffer device '%s': %s\n",
  66. h->filename, av_err2str(ret));
  67. return ret;
  68. }
  69. if (ioctl(fbdev->fd, FBIOGET_VSCREENINFO, &fbdev->varinfo) < 0) {
  70. ret = AVERROR(errno);
  71. av_log(h, AV_LOG_ERROR, "FBIOGET_VSCREENINFO: %s\n", av_err2str(ret));
  72. goto fail;
  73. }
  74. if (ioctl(fbdev->fd, FBIOGET_FSCREENINFO, &fbdev->fixinfo) < 0) {
  75. ret = AVERROR(errno);
  76. av_log(h, AV_LOG_ERROR, "FBIOGET_FSCREENINFO: %s\n", av_err2str(ret));
  77. goto fail;
  78. }
  79. pix_fmt = ff_get_pixfmt_from_fb_varinfo(&fbdev->varinfo);
  80. if (pix_fmt == AV_PIX_FMT_NONE) {
  81. ret = AVERROR(EINVAL);
  82. av_log(h, AV_LOG_ERROR, "Framebuffer pixel format not supported.\n");
  83. goto fail;
  84. }
  85. fbdev->data = mmap(NULL, fbdev->fixinfo.smem_len, PROT_WRITE, MAP_SHARED, fbdev->fd, 0);
  86. if (fbdev->data == MAP_FAILED) {
  87. ret = AVERROR(errno);
  88. av_log(h, AV_LOG_ERROR, "Error in mmap(): %s\n", av_err2str(ret));
  89. goto fail;
  90. }
  91. return 0;
  92. fail:
  93. close(fbdev->fd);
  94. return ret;
  95. }
  96. static int fbdev_write_packet(AVFormatContext *h, AVPacket *pkt)
  97. {
  98. FBDevContext *fbdev = h->priv_data;
  99. uint8_t *pin, *pout;
  100. enum AVPixelFormat fb_pix_fmt;
  101. int disp_height;
  102. int bytes_to_copy;
  103. AVCodecContext *codec_ctx = h->streams[fbdev->index]->codec;
  104. enum AVPixelFormat video_pix_fmt = codec_ctx->pix_fmt;
  105. int video_width = codec_ctx->width;
  106. int video_height = codec_ctx->height;
  107. int bytes_per_pixel = ((codec_ctx->bits_per_coded_sample + 7) >> 3);
  108. int src_line_size = video_width * bytes_per_pixel;
  109. if (fbdev->index != pkt->stream_index)
  110. return 0;
  111. if (ioctl(fbdev->fd, FBIOGET_VSCREENINFO, &fbdev->varinfo) < 0)
  112. av_log(h, AV_LOG_WARNING,
  113. "Error refreshing variable info: %s\n", av_err2str(AVERROR(errno)));
  114. fb_pix_fmt = ff_get_pixfmt_from_fb_varinfo(&fbdev->varinfo);
  115. if (fb_pix_fmt != video_pix_fmt) {
  116. av_log(h, AV_LOG_ERROR, "Pixel format %s is not supported, use %s\n",
  117. av_get_pix_fmt_name(video_pix_fmt), av_get_pix_fmt_name(fb_pix_fmt));
  118. return AVERROR(EINVAL);
  119. }
  120. disp_height = FFMIN(fbdev->varinfo.yres, video_height);
  121. bytes_to_copy = FFMIN(fbdev->varinfo.xres, video_width) * bytes_per_pixel;
  122. pin = pkt->data;
  123. pout = fbdev->data +
  124. bytes_per_pixel * fbdev->varinfo.xoffset +
  125. fbdev->varinfo.yoffset * fbdev->fixinfo.line_length;
  126. if (fbdev->xoffset) {
  127. if (fbdev->xoffset < 0) {
  128. if (-fbdev->xoffset >= video_width) //nothing to display
  129. return 0;
  130. bytes_to_copy += fbdev->xoffset * bytes_per_pixel;
  131. pin -= fbdev->xoffset * bytes_per_pixel;
  132. } else {
  133. int diff = (video_width + fbdev->xoffset) - fbdev->varinfo.xres;
  134. if (diff > 0) {
  135. if (diff >= video_width) //nothing to display
  136. return 0;
  137. bytes_to_copy -= diff * bytes_per_pixel;
  138. }
  139. pout += bytes_per_pixel * fbdev->xoffset;
  140. }
  141. }
  142. if (fbdev->yoffset) {
  143. if (fbdev->yoffset < 0) {
  144. if (-fbdev->yoffset >= video_height) //nothing to display
  145. return 0;
  146. disp_height += fbdev->yoffset;
  147. pin -= fbdev->yoffset * src_line_size;
  148. } else {
  149. int diff = (video_height + fbdev->yoffset) - fbdev->varinfo.yres;
  150. if (diff > 0) {
  151. if (diff >= video_height) //nothing to display
  152. return 0;
  153. disp_height -= diff;
  154. }
  155. pout += fbdev->yoffset * fbdev->fixinfo.line_length;
  156. }
  157. }
  158. for (int i = 0; i < disp_height; i++) {
  159. memcpy(pout, pin, bytes_to_copy);
  160. pout += fbdev->fixinfo.line_length;
  161. pin += src_line_size;
  162. }
  163. return 0;
  164. }
  165. static av_cold int fbdev_write_trailer(AVFormatContext *h)
  166. {
  167. FBDevContext *fbdev = h->priv_data;
  168. munmap(fbdev->data, fbdev->fixinfo.smem_len);
  169. close(fbdev->fd);
  170. return 0;
  171. }
  172. #define OFFSET(x) offsetof(FBDevContext, x)
  173. #define ENC AV_OPT_FLAG_ENCODING_PARAM
  174. static const AVOption options[] = {
  175. { "xoffset", "set x coordinate of top left corner", OFFSET(xoffset), AV_OPT_TYPE_INT, {.i64 = 0}, INT_MIN, INT_MAX, ENC },
  176. { "yoffset", "set y coordinate of top left corner", OFFSET(yoffset), AV_OPT_TYPE_INT, {.i64 = 0}, INT_MIN, INT_MAX, ENC },
  177. { NULL }
  178. };
  179. static const AVClass fbdev_class = {
  180. .class_name = "fbdev outdev",
  181. .item_name = av_default_item_name,
  182. .option = options,
  183. .version = LIBAVUTIL_VERSION_INT,
  184. };
  185. AVOutputFormat ff_fbdev_muxer = {
  186. .name = "fbdev",
  187. .long_name = NULL_IF_CONFIG_SMALL("Linux framebuffer"),
  188. .priv_data_size = sizeof(FBDevContext),
  189. .audio_codec = AV_CODEC_ID_NONE,
  190. .video_codec = AV_CODEC_ID_RAWVIDEO,
  191. .write_header = fbdev_write_header,
  192. .write_packet = fbdev_write_packet,
  193. .write_trailer = fbdev_write_trailer,
  194. .flags = AVFMT_NOFILE | AVFMT_VARIABLE_FPS | AVFMT_NOTIMESTAMPS,
  195. .priv_class = &fbdev_class,
  196. };