vc1testenc.c 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * VC-1 test bitstreams format muxer.
  3. * Copyright (c) 2008 Konstantin Shishkov
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "avformat.h"
  22. typedef struct RCVContext {
  23. int frames;
  24. } RCVContext;
  25. static int vc1test_write_header(AVFormatContext *s)
  26. {
  27. AVCodecContext *avc = s->streams[0]->codec;
  28. AVIOContext *pb = s->pb;
  29. if (avc->codec_id != CODEC_ID_WMV3) {
  30. av_log(s, AV_LOG_ERROR, "Only WMV3 is accepted!\n");
  31. return -1;
  32. }
  33. avio_wl24(pb, 0); //frames count will be here
  34. avio_w8(pb, 0xC5);
  35. avio_wl32(pb, 4);
  36. avio_write(pb, avc->extradata, 4);
  37. avio_wl32(pb, avc->height);
  38. avio_wl32(pb, avc->width);
  39. avio_wl32(pb, 0xC);
  40. avio_wl24(pb, 0); // hrd_buffer
  41. avio_w8(pb, 0x80); // level|cbr|res1
  42. avio_wl32(pb, 0); // hrd_rate
  43. if (s->streams[0]->r_frame_rate.den && s->streams[0]->r_frame_rate.num == 1)
  44. avio_wl32(pb, s->streams[0]->r_frame_rate.den);
  45. else
  46. avio_wl32(pb, 0xFFFFFFFF); //variable framerate
  47. av_set_pts_info(s->streams[0], 32, 1, 1000);
  48. return 0;
  49. }
  50. static int vc1test_write_packet(AVFormatContext *s, AVPacket *pkt)
  51. {
  52. RCVContext *ctx = s->priv_data;
  53. AVIOContext *pb = s->pb;
  54. if (!pkt->size)
  55. return 0;
  56. avio_wl32(pb, pkt->size | ((pkt->flags & AV_PKT_FLAG_KEY) ? 0x80000000 : 0));
  57. avio_wl32(pb, pkt->pts);
  58. avio_write(pb, pkt->data, pkt->size);
  59. avio_flush(pb);
  60. ctx->frames++;
  61. return 0;
  62. }
  63. static int vc1test_write_trailer(AVFormatContext *s)
  64. {
  65. RCVContext *ctx = s->priv_data;
  66. AVIOContext *pb = s->pb;
  67. if (s->pb->seekable) {
  68. avio_seek(pb, 0, SEEK_SET);
  69. avio_wl24(pb, ctx->frames);
  70. avio_flush(pb);
  71. }
  72. return 0;
  73. }
  74. AVOutputFormat ff_vc1t_muxer = {
  75. .name = "rcv",
  76. .long_name = NULL_IF_CONFIG_SMALL("VC-1 test bitstream"),
  77. .mime_type = "",
  78. .extensions = "rcv",
  79. .priv_data_size = sizeof(RCVContext),
  80. .audio_codec = CODEC_ID_NONE,
  81. .video_codec = CODEC_ID_WMV3,
  82. .write_header = vc1test_write_header,
  83. .write_packet = vc1test_write_packet,
  84. .write_trailer = vc1test_write_trailer,
  85. };